Vladimir Bauer
Vladimir Bauer
Solution I came up with is to suppress overflowing hints once until mode change back to normal. ``` define-command -hidden rust-inlay-hints-suppress-until-normal %{ remove-highlighter window/rust_analyzer_inlay_hints hook -once window ModeChange pop:insert:normal %{...
I assumed that VScode would highlight errors straight away, but in fact it didn't. So it turns out it's not specific to kak-lsp. Can we send `textDocument/didSave` on `BufCreate` hook?
I'm using `kak-lsp` compiled from latest master.
I did undo, which spawned multiple cursors which I didn't notice, then I entered insert mode and start typing without realizing that there were multiple cursors. FWIW this is a...
Are you sure that gopls supports semantic tokens? I've tried config with addition you mentioned, but capabilities command of lsp user menu shows no any semantic tokens. For example, here...
@rr do you use fzf.vim plugin? If so try following: ```VimL " Customize fzf colors to match your color scheme let g:fzf_colors = \ { 'fg': ['fg', 'Normal'], \ 'bg':...
Not sure if I can implement this in a foreseeable future, nevertheless it is good feature to have. PR is welcome.
Actually there is [ProxyFromEnvironment](https://pkg.go.dev/net/http#ProxyFromEnvironment) used by default. It means that you can export proxy via environment variable and it should be picked up automatically. Name of environment variable provided in...
You can set env var per session like: ``` $ HTTP_PROXY="your_proxy_URL" getparty URL ```
Hi Nick! I personally use `getparty` on very unstable connections and never faced such an issue, though I always use a HEAD version. > Is there anything in the retry...