Lucas Hoffmann

Results 205 comments of Lucas Hoffmann

I have introduced a temporary workaround for this issue: The failing test are all marked and can be skipped when running the tests. With 738a81ec729418a7029e099bff91c255606ab59f you can deactivate them with...

I do not consider this fixed. The skipping of the broken tests is only a workaround.

Yes an import of vcf files is not yet implemented. The `-i`/`--input-file` currently only accepts yaml template files. (I am currently copying vcf files to my address book folder by...

I experience the same regression with a similar lua script that I use with `nvim -OS script.lua`: ~~~lua local function all_readable(filelist) for _, file in ipairs(filelist) do if vim.fn.filereadable(file) ==...

Hello @aclements do you mind merging this? It is becoming an annoyance because distributions have switched to python >=3.12 which emits a syntax warning for this. (python 3.15 even says...

If I understand the linked issue correctly you suggest that we implement such a plugin in nvimpager: 1. parse the text for hyperlinks 2. add extmarks with the `url` option...

What is the `\e[K` sequence supposed to do? If I `cat part.log` they don't seem to do anything. PS: vimpager is unrelated.

The full log is not highlighted because nvimpager just checks the first 100 lines to decide if we should highlight terminal escape codes (function `check_escape_sequences()` in `pager_mode()`)

about: io.read: why? I think it reads stdin or we need to open the file again with io.open. But nvim has opened it already so why not use nvim_buf_get_lines? about...