From dc55b10bd7b723f05d0f237f4b676c4331e2e7a6 Mon Sep 17 00:00:00 2001 From: John Goulah Date: Mon, 29 Nov 2010 16:53:34 +0000 Subject: [PATCH 1/2] fixed commenting for bash scripts --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 982b140..3972144 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -305,6 +305,7 @@ let s:delimiterMap = { \ 'sed': { 'left': '#' }, \ 'sgmldecl': { 'left': '--', 'right': '--' }, \ 'sgmllnx': { 'left': '' }, + \ 'sh': { 'left': '#' }, \ 'sicad': { 'left': '*' }, \ 'simula': { 'left': '%', 'leftAlt': '--' }, \ 'sinda': { 'left': '$' }, From 29f8ebc7f5d4fb89775cbe5f6ff4afa8ed8f5a94 Mon Sep 17 00:00:00 2001 From: John Goulah Date: Fri, 10 Dec 2010 21:53:08 +0000 Subject: [PATCH 2/2] fixed commenting for perl scripts --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index f2c10b9..ebc8eae 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -264,6 +264,7 @@ let s:delimiterMap = { \ 'pcap': { 'left': '#' }, \ 'pccts': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'pdf': { 'left': '%' }, + \ 'perl': { 'left': '#' }, \ 'pfmain': { 'left': '//' }, \ 'php': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'pic': { 'left': ';' },