Johannes Altmanninger
Johannes Altmanninger
Is this with the default configuration (for Kakoune and kak-lsp)? Is the language server relevant? Does it happen every time? Does it work if you try the same with the...
kak-lsp doesn't have explicit separation of `initializationOptions` and `settings`. We take everything from a single config object (similar to VSCode). The object is at `[language.haxe.settings.haxe]`. Users can add all settings...
`lsp_server_configuration` is deprecated. My first TOML snippet already sets `displayArguments`, so they should be equivalent > the completion list is too big and I can't see quite well the documentation...
> I know this issue is a little stale I think it's still a good idea, especially considering that VSCode already supports that (it can display diagnostics from multiple language...
The naive implementation of semantic-tokens with NormalIdle hooks indeed potentially sends a request on every key stroke, even if we didn't modify the buffer. However, we already have a mechanism...
Hmm we might need to fire preexec earlier. Note that preexec/postexec are not fired for empty commands since https://github.com/fish-shell/fish-shell/pull/7085 which might hinder your use case. Perhaps we can emit preexec...
> Actually, we don't need to fire preexec for empty commands for my use-case. Good to know, then firing preexec earlier should be enough. > I can't really decide whether...
So the problem is that 00debian-profile.fish stomps PATH because it runs after ~/.config/fish/conf.d.arrakis.fish Fixing the order by moving to C++ sounds reasonable. I wasn't aware that you could override conf.d...
This has previously been requested in #7883 (and @thithib's #8617) I think it's reasonable to special-case file completion here, because it's already special: we complete one path component at a...
There's another side of this coin. If there are very few completions, the current ouput looks better IMO, especially for new users. (Also I think `…/` looks a bit enigmatic...