From 1d4e02c67008c8be87e63689472f82eb5d2fa351 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 09:24:37 +0300 Subject: [PATCH] Add block comment delimiter as alternate for CoffeeScript Closes #118 --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index fbe048f..9698193 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -115,7 +115,7 @@ let s:delimiterMap = { \ 'clipper': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'clojure': { 'left': ';' }, \ 'cmake': { 'left': '#' }, - \ 'coffee': { 'left': '#' }, + \ 'coffee': { 'left': '#', 'leftAlt': '###', 'rightAlt': '###' }, \ 'conkyrc': { 'left': '#' }, \ 'context': { 'left': '%', 'leftAlt': '--' }, \ 'coq': { 'left': '(*', 'right': '*)' },