From af8bb4258d6767e35b42dc3071abd6574a3f665c Mon Sep 17 00:00:00 2001 From: Alec Shaw Date: Tue, 26 Dec 2017 08:02:19 +0000 Subject: [PATCH 1/4] 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': '*/' }, From ff3d8d7d7cae2b64ad9c83c07f461f5115b2b7d6 Mon Sep 17 00:00:00 2001 From: tlsvc <6399789+tlsvc@users.noreply.github.com> Date: Sat, 13 Jan 2018 09:47:04 +0100 Subject: [PATCH 2/4] Add support for ANSYS Parametric Design Language (apdl) (#317) --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 86f0120..c777c20 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -82,6 +82,7 @@ let s:delimiterMap = { \ 'ansible': { 'left': '#' }, \ 'apache': { 'left': '#' }, \ 'apachestyle': { 'left': '#' }, + \ 'apdl': { 'left': '!' }, \ 'applescript': { 'left': '--', 'leftAlt': '(*', 'rightAlt': '*)' }, \ 'armasm': { 'left': ';' }, \ 'asciidoc': { 'left': '//' }, From 2f973bd4fa009fe852b1c1c6f025bf38742a8b1c Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 2 Feb 2018 17:56:54 +0800 Subject: [PATCH 3/4] Fix Markdown formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd7eec0..2d464ad 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Comment functions so powerful—no comment necessary. 1. Add `NeoBundle 'scrooloose/nerdcommenter'` to your vimrc file. 2. Reload your vimrc or restart -3. Run `:NeoUpdate`` +3. Run `:NeoUpdate` #### [Pathogen](https://github.com/tpope/vim-pathogen) From 670dba1bb53bc025173920b8066595074208fbe0 Mon Sep 17 00:00:00 2001 From: dandersson Date: Wed, 7 Feb 2018 10:19:12 +0100 Subject: [PATCH 4/4] Add support for Robot Framework files (#323) --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index c777c20..704da0a 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -360,6 +360,7 @@ let s:delimiterMap = { \ 'rgb': { 'left': '!' }, \ 'rib': { 'left': '#' }, \ 'rmd': { 'left': '#' }, + \ 'robot': { 'left': '#' }, \ 'robots': { 'left': '#' }, \ 'rspec': { 'left': '#' }, \ 'ruby': { 'left': '#', 'leftAlt': '=begin', 'rightAlt': '=end' },