VSCode Neovim で vscode のコメントアウト機能を使う方法

created at: 2021-06-08

history

方法

init.vimに以下を追記する。
if exists('g:vscode')
  xmap gc  <Plug>VSCodeCommentary
  nmap gc  <Plug>VSCodeCommentary
  omap gc  <Plug>VSCodeCommentary
  nmap gcc <Plug>VSCodeCommentaryLine
endif
これでreactとかで js 部分と jsx 部分でコメントアウトの種類を自動で切り替えてくれる。

参考