From 38d77f64cf62fc3a205fb927ef8e1020c1336b9c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 09:07:12 +0300 Subject: [PATCH] Add plain LaTeX file type support Closes #105 --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index da6feb2..fbe048f 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -397,6 +397,7 @@ let s:delimiterMap = { \ 'tasm': { 'left': ';' }, \ 'tcl': { 'left': '#' }, \ 'terraform': { 'left': '#', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'tex': { 'left': '%' }, \ 'texinfo': { 'left': "@c " }, \ 'texmf': { 'left': '%' }, \ 'tf': { 'left': ';' },