From af8bb4258d6767e35b42dc3071abd6574a3f665c Mon Sep 17 00:00:00 2001 From: Alec Shaw Date: Tue, 26 Dec 2017 08:02:19 +0000 Subject: [PATCH] Add support for Praat scripting language (#316) [Praat][1] is a program for phonetics research which has a scripting interface. [1]: http://www.fon.hum.uva.nl/praat/ --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index fb8a9df..86f0120 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -335,6 +335,7 @@ let s:delimiterMap = { \ 'povini': { 'left': ';' }, \ 'ppd': { 'left': '%' }, \ 'ppwiz': { 'left': ';;' }, + \ 'praat': { 'left': '#' }, \ 'privoxy': { 'left': '#' }, \ 'processing': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'prolog': { 'left': '%', 'leftAlt': '/*', 'rightAlt': '*/' },