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/)
This commit is contained in:
Adrien Lemaire
2021-02-27 18:25:37 +09:00
committed by GitHub
parent 1c7b57608e
commit 16ecc429ec

View File

@@ -121,6 +121,7 @@ let s:delimiterMap = {
\ 'cucumber': { 'left': '#' }, \ 'cucumber': { 'left': '#' },
\ 'cuda': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'cuda': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'cvs': { 'left': 'CVS:' }, \ 'cvs': { 'left': 'CVS:' },
\ 'cypher': { 'left': '//' },
\ 'cython': { 'left': '# ', 'leftAlt': '#' }, \ 'cython': { 'left': '# ', 'leftAlt': '#' },
\ 'd': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'd': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'dakota': { 'left': '#' }, \ 'dakota': { 'left': '#' },