Tom Praschan
Tom Praschan
With pdflatex, lualatex etc. I am able to do something like `echo "test.tex" | pdflatex`. This doesn't work with latexrun: ``` usage: latexrun [-h] [-o FILE] [--latex-cmd CMD] [--latex-args ARGS]...
[pounce.nvim](https://github.com/rlane/pounce.nvim) is similar to lightspeed/hop, but it uses fuzzy matching. The highlight groups currently are `PounceMatch`, `PounceGap` and `PounceAccept`. There's also the currently experimental `PounceAcceptBest`. Would be really cool if...
I know this feature from QtCreator where the is a separate highlight group for virtual methods. Since AFAIK QtCreator uses clangd for semantic highlighting, would this also be possible with...
Is there a way to get rid of the space between a footnote and the bottom of a slide? IMO it wastes too much space for the presentations main content....
I tried `"coc.source.clangd.priority": 1234` but that doesn't seem to have an effect. Could there maybe be a `'clangd.priority'` option?
Say I have something like ``` if (condition) { // ... } else { // Some really long code } ``` When my cursor is inside the else clause, the...
I used to do `set syntax=cpp.doxygen` in vim which would give me nice highlighting for doxygen documentation comments, but with Treesitter this doesn't work anymore. Would it be possible in...
Clangd-14 also has support for inlay hints (currently needs to be enabled via the `--inlay-hints` flag) via the 'clangd/inlayHints' request. Would be cool if this was supported as well. Probably...
I found that everytime I do _anything_ (even just moving around in normal mode), the code model seems to be reloaded, i.e. cppcheck is run, the warnings turn grey for...