From 8c525a27aa0d311b77edc7d33297165b19410948 Mon Sep 17 00:00:00 2001 From: Michael Lerch Date: Sat, 28 Sep 2013 08:38:02 -0600 Subject: [PATCH 1/2] Add support for stan bayesian modeling language --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 13c7693..7cd1638 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -358,6 +358,7 @@ let s:delimiterMap = { \ 'sqr': { 'left': '!' }, \ 'squid': { 'left': '#' }, \ 'st': { 'left': '"' }, + \ 'stan': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'stp': { 'left': '--' }, \ 'supercollider': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'systemverilog': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, From 956431914f7fdf4cda9265f7fa5af604dd434eb7 Mon Sep 17 00:00:00 2001 From: Michael Lerch Date: Tue, 6 May 2014 08:37:15 -0600 Subject: [PATCH 2/2] add pandoc same as markdown --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 7cd1638..1489655 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -277,6 +277,7 @@ let s:delimiterMap = { \ 'opl': { 'left': "REM" }, \ 'ora': { 'left': '#' }, \ 'ox': { 'left': '//' }, + \ 'pandoc': { 'left': '' }, \ 'pascal': { 'left': '{','right': '}', 'leftAlt': '(*', 'rightAlt': '*)' }, \ 'patran': { 'left': '$', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'pcap': { 'left': '#' },