Hennadii Chernyshchyk
Hennadii Chernyshchyk
This is not the same as semantic highlighting? It looks like it was added 17 days ago and will be released in clangd 11.
Nice ti hear. Will wait for the implementation :) I also can compile clangd from source to test if needed.
I have a question. vim-lsp have [Highlight references](https://github.com/prabirshrestha/vim-lsp#highlight-references) feature. It just add semi-transparent rectangle on reference under cursor by default:  Is this related to semantic highlighting or semantic tokens?
I found a solution to have fast `sementicHighlights` with vim-lamp that available in current `clangd` release. I just installed [LanguageClient-neovim](https://github.com/autozimu/LanguageClient-neovim) and configured only semantic highlighting in it (without any diagnostics)....
Especially important with the release of [bevy_xpbd](https://joonaa.dev/blog/02/bevy-xpbd-0-1-0).
Could work, but I think that the suggested enum is a better solution, it could work even without physics. There is no reason to depend on `parry` for navigation crate.
You are right, this does makes sense.
> "debug": ["", "./sample-input.txt"]`?
Oh, I see. Makes sense, but not sure if it's possible. I use Job API from plenary: https://github.com/nvim-lua/plenary.nvim/blob/master/lua/plenary/job.lua If it does not support it, I can't fix it. I would...
Right, then we probably could add support for it by providing additional `stdin` parameter with paths. And just use it in this function: https://github.com/Shatur/neovim-tasks/blob/f42b164499b6e833ac6b94993abc215fc4a0db17/lua/tasks/runner.lua#L98 I currently busy at the moment,...