mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
vim-patch:9.0.1645: zserio files are not recognized (#24120)
Problem: zserio files are not recognized.
Solution: Add a pattern for zserio files. (Dominique Pellé,
closes vim/vim#12544)
2b994da57a
Co-authored-by: =?UTF-8?q?Dominique=20Pell=C3=A9?= <dominique.pelle@gmail.com>
This commit is contained in:
parent
f0884f21fa
commit
904ad5458d
@ -1174,6 +1174,7 @@ local extension = {
|
|||||||
zir = 'zir',
|
zir = 'zir',
|
||||||
zu = 'zimbu',
|
zu = 'zimbu',
|
||||||
zut = 'zimbutempl',
|
zut = 'zimbutempl',
|
||||||
|
zs = 'zserio',
|
||||||
zsh = 'zsh',
|
zsh = 'zsh',
|
||||||
vala = 'vala',
|
vala = 'vala',
|
||||||
web = function(path, bufnr)
|
web = function(path, bufnr)
|
||||||
|
@ -697,6 +697,7 @@ let s:filename_checks = {
|
|||||||
\ 'zimbu': ['file.zu'],
|
\ 'zimbu': ['file.zu'],
|
||||||
\ 'zimbutempl': ['file.zut'],
|
\ 'zimbutempl': ['file.zut'],
|
||||||
\ 'zir': ['file.zir'],
|
\ 'zir': ['file.zir'],
|
||||||
|
\ 'zserio': ['file.zs'],
|
||||||
\ 'zsh': ['.zprofile', '/etc/zprofile', '.zfbfmarks', 'file.zsh', '.zcompdump', '.zlogin', '.zlogout', '.zshenv', '.zshrc', '.zcompdump-file', '.zlog', '.zlog-file', '.zsh', '.zsh-file', 'any/etc/zprofile', 'zlog', 'zlog-file', 'zsh', 'zsh-file'],
|
\ 'zsh': ['.zprofile', '/etc/zprofile', '.zfbfmarks', 'file.zsh', '.zcompdump', '.zlogin', '.zlogout', '.zshenv', '.zshrc', '.zcompdump-file', '.zlog', '.zlog-file', '.zsh', '.zsh-file', 'any/etc/zprofile', 'zlog', 'zlog-file', 'zsh', 'zsh-file'],
|
||||||
\
|
\
|
||||||
\ 'help': [$VIMRUNTIME . '/doc/help.txt'],
|
\ 'help': [$VIMRUNTIME . '/doc/help.txt'],
|
||||||
|
Loading…
Reference in New Issue
Block a user