From 63b252ad40db4555e51b478817f173cf28520e84 Mon Sep 17 00:00:00 2001 From: othree Date: Tue, 15 Feb 2011 14:52:37 +0800 Subject: [PATCH] add support for less and scss --- plugin/NERD_commenter.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 018c55f..b3e0fe8 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -208,6 +208,7 @@ let s:delimiterMap = { \ 'kscript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'lace': { 'left': '--' }, \ 'ldif': { 'left': '#' }, + \ 'less': { 'left': '/*','right': '*/' }, \ 'lilo': { 'left': '#' }, \ 'lilypond': { 'left': '%' }, \ 'liquid': { 'left': '{% comment %}', 'right': '{% endcomment %}' }, @@ -305,6 +306,7 @@ let s:delimiterMap = { \ 'scheme': { 'left': ';', 'leftAlt': '#|', 'rightAlt': '|#' }, \ 'scilab': { 'left': '//' }, \ 'scsh': { 'left': ';' }, + \ 'scss': { 'left': '/*','right': '*/' }, \ 'sed': { 'left': '#' }, \ 'sgmldecl': { 'left': '--', 'right': '--' }, \ 'sgmllnx': { 'left': '' },