kflu
kflu
I have a remote ssh host that requires two factor authentication. Everytime when I `ssh @remote`. i got a prompt for me to enter yubikey codes (e.g., tap on the...
C-t is used in vim as jumping back in tag stack. With LSP, this is normally used for "navigating back". So adding this to vscode neovim for the same convention....
In vim, neovim, vscode vim, etc, Ctrl-T is used to navigate back from where a go to definition (or go to tag) was initiated: ``` g *g* ** *CTRL-T* CTRL-T...
It'd be nice to include at least an additional dark theme with markserv, just for the eye, and expose that via a command line switch.
In iVim insert mode, while I type on iOS built-in English keyboard using [QuickPath (i.e., finger sliding)](https://support.apple.com/guide/iphone/type-with-the-onscreen-keyboard-iph3c50f96e/ios), selecting alternative words doesn't work: If I click an alternative word, nothing happens,...
_Instructions: Replace the template text and remove irrelevant text (including this line)_ **Is your feature request about something that is currently impossible or hard to do? Please describe the problem.**...
I create a vm using the ubuntu template and the ubuntu server cloud image. However the started VM doesn't seem to be able to obtain an IP address. For networking,...
MinGW built jimsh have a non-implemented `file normalize`. The reason is that [MinGW doesn't have `realpath()` function.](https://sourceforge.net/p/mingw/bugs/2207/). It would be nice to implement file normalize for systems without `realpath`. `file...
I noticed that jedi can handle basic kwargs forwarding: ``` def f(a,b,c): ... def g(**kwargs): return f(**kwargs) ``` Typing `g(` it prompts `a,b,c`. However, the below won't work: ``` @click.option(...)...
Is there a way to automatically update the diagnostics location list as I type? Currently it seems the behavior is that I've to manually invoke `:LspDocumentDiagnostics` in order to update...