Gianmaria Bajo
Gianmaria Bajo
Documentation says these commands should only stop/start clients on current buffer, but it's obviously not true. https://github.com/neovim/nvim-lspconfig/blob/63efd6ed156ae578c7e23278ec0a82776802106b/doc/lspconfig.txt#L472-L476 So it happens that `LspStop` stops everything on all buffers, but `LspStart` only...
I opened a PR to fix this at #1808. Your PR doesn't really solve the main problem (`LspStop` without arguments stops everything on all buffers, but `LspStart` cannot restart all...
> IMO :LspStop completely shutting down all language servers and disabling the autocommands is probably what I would expect `LspStart` restarts the clients only in the current buffer. This means...
An easy alternative for `LspStop` would be to have ``` :LspStop stop all clients in current buffer :LspStop {id} stop client with id :LspStop! stop all clients on all buffers...
Maybe this can work? They should replace the existing ones, I removed `oneline` and added `\n\n` as pattern that can close the region (in `end`) ```vim syn region asciidoctorBold matchgroup=Conceal...
There could be a `contained` variant that is used in regular paragraphs, but not in lists, to avoid the list problem. I'll see if I can do it. If a...
I made an attempt here https://github.com/mg979/vim-asciidoctor/blob/multiline_bolditalic/syntax/asciidoctor.vim It allows multiline bold/italics only in regular paragraphs. At least this is the intention. Edit: it seems to b very slow unfortunately.
I made it a bit faster I think. I don't know if there's a better (and acceptably fast) solution than the one I tried. To have multiline working would be...
You can see the current differences here https://github.com/habamax/vim-asciidoctor/compare/master...mg979:multiline_bolditalic I'll try to improve it when I'll have the time
1. must be fixed, paragraph should include most other clusters 2. this maybe because it's the last char of the line, in that case? Or maybe you have `\r\n` line...