From 376838672df561bb2d7422933cacf25c0e1b8fed Mon Sep 17 00:00:00 2001 From: Ratan Date: Tue, 31 Oct 2017 22:22:28 +0530 Subject: [PATCH] Add julia multiline comment chars (#312) --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index df14ece..f8ed1df 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -238,7 +238,7 @@ let s:delimiterMap = { \ 'jinja': { 'left': '', 'leftAlt': '{#', 'rightAlt': '#}' }, \ 'jproperties': { 'left': '#' }, \ 'jsp': { 'left': '<%--', 'right': '--%>' }, - \ 'julia': { 'left': '#' }, + \ 'julia': { 'left': '# ', 'leftAlt': '#=', 'rightAlt': '=#' }, \ 'kix': { 'left': ';' }, \ 'kscript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'lace': { 'left': '--' },