From 16ecc429ec2792ba5c972f0a920dc14223b7bd4a Mon Sep 17 00:00:00 2001 From: Adrien Lemaire Date: Sat, 27 Feb 2021 18:25:37 +0900 Subject: [PATCH] Add neo4j cypher filetype (#464) Let nerdcommenter properly comment cypher files. * [extension recommendation](https://neo4j.com/docs/cypher-manual/current/styleguide/#cypher-styleguide-general-recommendations) * [comments syntax](https://neo4j.com/docs/cypher-manual/current/syntax/comments/) --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 10a49db..b7d3b9a 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -121,6 +121,7 @@ let s:delimiterMap = { \ 'cucumber': { 'left': '#' }, \ 'cuda': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'cvs': { 'left': 'CVS:' }, + \ 'cypher': { 'left': '//' }, \ 'cython': { 'left': '# ', 'leftAlt': '#' }, \ 'd': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'dakota': { 'left': '#' },