Christoph Zirkelbach

Results 14 comments of Christoph Zirkelbach

One way or workaround would be: 1. install the Asciidoctor tools and their dependencies locally 2. configure the Asciidoctor VSCode extension to use the locally installed Asciidoctor instead of the...

The following command may be a workaround: `((sleep 1 && pkill -3 cmatrix) &) > /dev/null; cmatrix` Disadvantage: It kills all running cmatrix processes.

I have written my custom formatter for this: ```lua opts = { formatters_by_ft = { gitconfig = { 'trim_whitespace', 'trim_newlines', 'my_auto_indent' }, }, formatters = { -- Custom formatter to...

I think it still needs to be checked whether an area is selected and then only take `=` for this. I only used it for the complete buffer so far.

Now with selection support in visual mode: ```lua my_auto_indent = { format = function(_, ctx, _, callback) -- save cursor position in ` mark -> indent -> restore cursor position...

A shorter version: ```lua -- Custom formatter to auto indent buffer. -- - Indents with neovim's builtin indentation `=`. -- - Saves and restores cursor position in ` mark. my_auto_indent...

Okay, I understand. Thanks for the feedback. 😀

Thanks for the feedback. I'll take a look at it. Does the file `/home/...your...path...from....screenshot.../scripts/start.sh` exist?

~~I think it may be an error in the path naming between Linux and Windows. (`/` vs `\`)~~

Does the error still exist in the current version (also with the new setup instructions) of the plugin?