diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index ab7817f..7ba6e9b 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -231,6 +231,7 @@ let s:delimiterMap = { \ 'jgraph': { 'left': '(*', 'right': '*)' }, \ 'jinja': { 'left': '{#', 'right': '#}', 'leftAlt': '' }, \ 'jproperties': { 'left': '#' }, + \ 'jsonc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'jsonnet': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'jsp': { 'left': '<%--', 'right': '--%>' }, \ 'julia': { 'left': '# ', 'leftAlt': '#=', 'rightAlt': '=#' },