🐈
jsonc のコメントを Comment にする
問題
coc.nvim の wiki に書いてある通り.vimrc
に以下を追加しても、コメントの構文グループはjsonCommentError
のまま 😅
.vimrc
autocmd FileType json syntax match Comment +\/\/.\+$+
解決
after/ftplugin/json.vim
に以下を追記。
after/ftplugin/json.vim
syntax match Comment +\/\/.\+$+
Discussion