From 4b049b83faf45e652b2a9a6512346bf718c53d69 Mon Sep 17 00:00:00 2001 From: Pascal Bugnion Date: Sun, 14 Jul 2013 18:39:11 +0100 Subject: [PATCH] Added support for fortran and yaml filetypes. --- plugin/NERD_commenter.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 13c7693..423406d 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -157,6 +157,7 @@ let s:delimiterMap = { \ 'fgl': { 'left': '#' }, \ 'focexec': { 'left': '-*' }, \ 'form': { 'left': '*' }, + \ 'fortran': { 'left': '!' }, \ 'foxpro': { 'left': '*' }, \ 'fsharp': { 'left': '(*', 'right': '*)', 'leftAlt': '//' }, \ 'fstab': { 'left': '#' }, @@ -403,6 +404,7 @@ let s:delimiterMap = { \ 'xmath': { 'left': '#' }, \ 'xpm2': { 'left': '!' }, \ 'xquery': { 'left': '(:', 'right': ':)' }, + \ 'yaml': { 'left': '#' }, \ 'z8a': { 'left': ';' } \ }