Created
October 24, 2018 10:37
-
-
Save alpaca-tc/cd0aa5c16935680e10ce933d6bb28940 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
neovimをnodenvと併用したときのバグを発見してしまった。 | |
vim-jpに投げるか、放置するかどうしようかなー | |
```neovim/0.2.2_1/share/nvim/runtime/autoload/provider/node.vim | |
25c25,31 | |
< let args = [provider#node#Prog()] | |
--- | |
> let args = ['node'] | |
> | |
> if !empty($NVIM_NODE_HOST_DEBUG) | |
> call add(args, '--inspect-brk') | |
> endif | |
> | |
> call add(args , provider#node#Prog())``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment