From 5100f47542cb9cab120f172816471e6c3e242278 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 14 Feb 2019 09:50:24 +0300 Subject: [PATCH] Add kivy file format, fixes #361 --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 918fbb6..c787a0c 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -242,6 +242,7 @@ let s:delimiterMap = { \ 'jproperties': { 'left': '#' }, \ 'jsp': { 'left': '<%--', 'right': '--%>' }, \ 'julia': { 'left': '# ', 'leftAlt': '#=', 'rightAlt': '=#' }, + \ 'kivy': { 'left': '#' }, \ 'kix': { 'left': ';' }, \ 'kscript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'lace': { 'left': '--' },