Skip to content

Instantly share code, notes, and snippets.

@alpaca-tc
Created October 24, 2018 10:37
Show Gist options
  • Save alpaca-tc/cd0aa5c16935680e10ce933d6bb28940 to your computer and use it in GitHub Desktop.
Save alpaca-tc/cd0aa5c16935680e10ce933d6bb28940 to your computer and use it in GitHub Desktop.
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