From 668c8a7336cf8862d197b05300e95dba73b7eba4 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 21 Jan 2016 19:13:06 +0200 Subject: [PATCH] Add comment syntax for SILE Sile is a typesetter somewhat similar to LaTeX that uses two different possible input formats. Input can be XML which is already covered or there is a TeX like input format. The normal file extension for the latter is .sil. --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 816a4d2..7f6878a 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -332,6 +332,7 @@ let s:delimiterMap = { \ 'sgmllnx': { 'left': '' }, \ 'sh': { 'left': '#' }, \ 'sicad': { 'left': '*' }, + \ 'sile': { 'left': '%' }, \ 'simula': { 'left': '%', 'leftAlt': '--' }, \ 'sinda': { 'left': '$' }, \ 'skill': { 'left': ';' },