From c321b3460bc8b6172ef0c5045d8f862c8cb9f2d1 Mon Sep 17 00:00:00 2001 From: Komeji Koishi Date: Thu, 5 Jan 2017 16:33:29 +0400 Subject: [PATCH] Added filetype 'renpy' support. Renpy is an extension of python syntax and it uses '#' comments. --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index e8e1af9..0607ae5 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -349,6 +349,7 @@ let s:delimiterMap = { \ 'rebol': { 'left': ';' }, \ 'registry': { 'left': ';' }, \ 'remind': { 'left': '#' }, + \ 'renpy': { 'left': '# ', 'leftAlt': '#' }, \ 'resolv': { 'left': '#' }, \ 'rgb': { 'left': '!' }, \ 'rib': { 'left': '#' },