From 376838672df561bb2d7422933cacf25c0e1b8fed Mon Sep 17 00:00:00 2001 From: Ratan Date: Tue, 31 Oct 2017 22:22:28 +0530 Subject: [PATCH 1/2] 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': '--' }, From 63ba1a1123609c9bfb9f5d76debcd34afe429096 Mon Sep 17 00:00:00 2001 From: Carlos Eduardo de Andrade Date: Tue, 31 Oct 2017 12:53:26 -0400 Subject: [PATCH 2/2] Adding support to MiniZinc constraint modeling language. (#311) --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index f8ed1df..f62138f 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -274,6 +274,7 @@ let s:delimiterMap = { \ 'mel': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'meson': { 'left': '#' }, \ 'mib': { 'left': '--' }, + \ 'minizinc': { 'left': '% ', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'mips': { 'left': '#' }, \ 'mirah': {'left': '#' }, \ 'mkd': { 'left': '' },