Mercurial > vim
comparison runtime/filetype.vim @ 33740:61985d704ecc v9.0.2097
patch 9.0.2097: No support for cypher files
Commit: https://github.com/vim/vim/commit/8f0fe20ff1a13b468fdfaf85c434475f75c7a615
Author: Gerrit Meier <meistermeier@gmail.com>
Date: Sat Nov 11 08:58:26 2023 +0100
patch 9.0.2097: No support for cypher files
Problem: No support for cypher files
Solution: Add cypher filetype detection
Cypher query language support to work with (mostly) graph databases.
Already existing lsp support in Neovim's nvim-lspconfig:
https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#cypher_ls
closes: #13516
Signed-off-by: Gerrit Meier <meistermeier@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 11 Nov 2023 09:00:09 +0100 |
parents | 2d0113f8bc3c |
children | 4006051bf85d |
comparison
equal
deleted
inserted
replaced
33739:e690d02e52ce | 33740:61985d704ecc |
---|---|
339 " .cc and .cpp files can be C++ or Cynlib. | 339 " .cc and .cpp files can be C++ or Cynlib. |
340 au BufNewFile,BufRead *.cc | 340 au BufNewFile,BufRead *.cc |
341 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif | 341 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif |
342 au BufNewFile,BufRead *.cpp | 342 au BufNewFile,BufRead *.cpp |
343 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif | 343 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif |
344 | |
345 " Cypher query language | |
346 au BufNewFile,BufRead *.cypher setf cypher | |
344 | 347 |
345 " C++ | 348 " C++ |
346 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp | 349 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp |
347 if has("fname_case") | 350 if has("fname_case") |
348 au BufNewFile,BufRead *.C,*.H setf cpp | 351 au BufNewFile,BufRead *.C,*.H setf cpp |