mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-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: vim/vim#13516
8f0fe20ff1
Co-authored-by: Gerrit Meier <meistermeier@gmail.com>
This commit is contained in:
parent
592e4472da
commit
84688ec372
@ -333,6 +333,7 @@ local extension = {
|
||||
pld = 'cupl',
|
||||
si = 'cuplsim',
|
||||
cyn = 'cynpp',
|
||||
cypher = 'cypher',
|
||||
dart = 'dart',
|
||||
drt = 'dart',
|
||||
ds = 'datascript',
|
||||
|
@ -176,6 +176,7 @@ func s:GetFilenameChecks() abort
|
||||
\ 'cvs': ['cvs123'],
|
||||
\ 'cvsrc': ['.cvsrc'],
|
||||
\ 'cynpp': ['file.cyn'],
|
||||
\ 'cypher': ['file.cypher'],
|
||||
\ 'd': ['file.d'],
|
||||
\ 'dart': ['file.dart', 'file.drt'],
|
||||
\ 'datascript': ['file.ds'],
|
||||
|
Loading…
Reference in New Issue
Block a user