Mercurial > vim
view src/proto/os_vms.pro @ 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 | d4b2a8675b78 |
children |
line wrap: on
line source
/* os_vms.c */ void mch_settmode(tmode_T tmode); int mch_get_shellsize(void); void mch_set_shellsize(void); char_u *mch_getenv(char_u *lognam); int mch_setenv(char *var, char *value, int x); int vms_sys(char *cmd, char *out, char *inp); char *vms_tolower(char *name); int vms_sys_status(int status); int vms_read(char *inbuf, size_t nbytes); int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags); int mch_expandpath(garray_T *gap, char_u *path, int flags); void *vms_fixfilename(void *instring); void vms_remove_version(void *fname); int RealWaitForChar(int fd, long msec, int *check_for_gpm, int *interrupted); /* vim: set ft=c : */