From cdb6db91cc7130d74fd2808ce76b46165449ac42 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Thu, 21 Jul 2011 13:58:34 -0700 Subject: [PATCH] Add the puppet file type to the delimiter map. This should provide NERDcommenter the ability to comment puppet manifests --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 51ec3e0..6cb7dbe 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -293,6 +293,7 @@ let s:delimiterMap = { \ 'ps1': { 'left': '#' }, \ 'psf': { 'left': '#' }, \ 'ptcap': { 'left': '#' }, + \ 'puppet': { 'left': '#' }, \ 'python': { 'left': '#' }, \ 'radiance': { 'left': '#' }, \ 'ratpoison': { 'left': '#' },