From 59094ae1073394014f4e8dfe3f7dd5bb6b6ec9d4 Mon Sep 17 00:00:00 2001 From: zhon Date: Fri, 3 Dec 2010 20:50:32 -0700 Subject: [PATCH] add support for scheme --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 982b140..54695ca 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -300,6 +300,7 @@ let s:delimiterMap = { \ 'sass': { 'left': '//', 'leftAlt': '/*' }, \ 'sather': { 'left': '--' }, \ 'scala': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'scheme': { 'left': ';', 'leftAlt': '#|', 'rightAlt': '|#' }, \ 'scilab': { 'left': '//' }, \ 'scsh': { 'left': ';' }, \ 'sed': { 'left': '#' },