David Else

Results 246 comments of David Else

@alemuller Thanks for the info. My goal is to create HTML with my chosen theme's syntax highlighting for using on the web, so the actual `TOhtml` working with treesitter is...

I am pretty new to using folds in Neovim, just trying to develop my own workflow. Is your use case to automatically fold paragraphs and code blocks using something like...

I have this in my `init.vim` ``` let g:markdown_folding = 1 ``` and the new markdown parser with treesitter, header folding is working perfectly for me in Neovim 0.6. Do...

> > I have this in my `init.vim` > > ``` > > let g:markdown_folding = 1 > > ``` > > > > > > > > > >...

This might improve comments for you using visual mode: ``` if exists('g:vscode') " call VSCodeCommentary on the visual selection, and then re-select that visual selection with gv xmap VSCodeCommentarygv nmap...

I find pressing `esc` a few times seems to strangely fix things when input seems frozen here. Have you tried `f1 > developer:reload window` to restart without quitting?

@asvetliakov There is a solution in the https://github.com/PascalSenn/keyboard-quickfix extension: ``` // open quickfix { "key": "ctrl+.", "command": "keyboard-quickfix.openQuickFix", "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" }, { "key": "j", "command": "list.focusDown",...

@asvetliakov You have a very valid point, but here are a few counter-arguments to consider: - Integrating the code removes another extension dependency that could become unmaintained or break functionality...

> I'll have to revisit if there's still a good reason to use vscode-langservers-extracted `vscode-langservers-extracted` is an amazing package, before it came out only ancient redundant versions of these servers...

@marvka > ...or grab the CI version! :) How can I download the CI appimage binary?! I can't seem to find a link anywhere in the Github Actions area. Thanks!