Lucas Schwiderski
Lucas Schwiderski
@erinkim4 The point of the object->verb grammar is to interactively build and get visual feedback on your "object" before you have to commit to a "verb". E.g. in Vim, you...
A variation of the first option would be possible as well: Rather than just concatenating and sorting the lists, interleave the entries individually based on star count. I.e. keep a...
> Which major web services uses such a technique? Since the linked documents are requirements for the respective government services, I'd guess those do implement that. For private companies, I'd...
This works fine for me. I do have a similar issue with Semantic Tokens, where those only show up after the first NormalIdle, so I need to move the cursor...
Actually, it behaves differently whether I open the very first file after starting Kakoune or subsequent ones. If I start Kakoune, the first file behaves as described above. If I...
My initial guess would be "order of highlighters" as well, although I believe it's semantic highlighting rather than `shared/rust` here, since the built-in `rust.kak` is quite simple when it comes...
That one definitely looks like the syntax highlighter was created after the diagnostics highlighter.
`kak-lsp` is an LSP _client_. It doesn't support individual file types. What you're looking for is an LSP _server_ for that file type (a quick search yields https://github.com/Clinery1/nasm-lsp). You'll have...
I don't think there is a "completion event/hook" that triggers when a completion item is selected. There are only `InsertCompletionShow` and `InsertCompletionHide`. However, it should be enough to execute `rust-analyzer-inlay-hints`...
As far as I can tell, that project's purpose is to create a websocket interface for language servers that don't support one themselves. I don't see anything about this that...