From a5b5caff080c18e3395b5dac3ce9dcfb20ed891c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 09:59:24 +0300 Subject: [PATCH] Add spin filetype support Closes #154, thanks to @hmaarrfk. --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index fa5b21c..609b4b1 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -378,6 +378,7 @@ let s:delimiterMap = { \ 'specman': { 'left': '//' }, \ 'spectre': { 'left': '//', 'leftAlt': '*' }, \ 'spice': { 'left': '$' }, + \ 'spin': { 'left': '''', 'leftAlt': '{', 'rightAlt': '}' }, \ 'sql': { 'left': '-- ' }, \ 'sqlforms': { 'left': '-- ' }, \ 'sqlj': { 'left': '-- ' },