kflu

Results 16 comments of kflu

I was able to work around this by defining the following in the `keybindings.json`: ``` { "command": "workbench.action.navigateBack", "key": "ctrl+t", "when": "editorTextFocus && neovim.mode == normal" } ```

I tried to add it as a builtin keybinding (in vscode-neovim/pull/827), but wasn't successful. I documented the failed reason in the PR - can someone help take a look?

I also need to selectively enable certain makers (based on filetype in my case). Here's the only approach I can make it work: ``` function s:ConfigureNeomakeOnBufEnter() NeomakeDisableBuffer if &filetype ==...

is it reasonable to say that omnisharp-roslyn lsp should not return any URI that contains $metadata$, which does not comply with LSP standard, and most lsp clients don’t know how...

Yes I can repro this too. Also, for this to repro, you must open the encrypted file with vim *inside* tmux session. If doing it outside tmux, then there is...

Good point. Thanks. Providing a simplist example as you suggested is definately useful. Meanwhile, [here](https://github.com/Microsoft/schemy/tree/master/src/examples/command_server) is a more complex example - let me know if that helps. BTW - it'd...

Thanks Paul. It was an interesting read - it's encouraging to see Lisp got used in this way so many years ago 😄

Thanks. I could put common types under a more specific inner namespace, like `Schemy.Types`. Or, ideally, I need to think about if I really need this type `None` - currently,...

This behavior basically renders markdown's URL hiding useless. With vim-markdown, if I have a link with long URL, and set `conceallevel=2`, I got multiple lines wrapped due to it. See...

Looks like this is the work-around (in .vimrc) ``` let g:lsp_settings = { \ 'efm-langserver': {'disabled': v:false} \} ```