mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:9.0.1918
patch 9.0.1918: No filetype detection for Authzed filetypes
Problem: No filetype detection for Authzed filetypes
Solution: Detect the *.zed file extension as authzed filetype
closes: vim/vim#13129
5790a54166
Co-authored-by: Matt Polzin <mpolzin@workwithopal.com>
This commit is contained in:
parent
23c21e7630
commit
473d0aa3e6
@ -210,6 +210,7 @@ local extension = {
|
||||
astro = 'astro',
|
||||
atl = 'atlas',
|
||||
as = 'atlas',
|
||||
zed = 'authzed',
|
||||
ahk = 'autohotkey',
|
||||
au3 = 'autoit',
|
||||
ave = 'ave',
|
||||
|
@ -97,6 +97,7 @@ func s:GetFilenameChecks() abort
|
||||
\ 'asterisk': ['asterisk/file.conf', 'asterisk/file.conf-file', 'some-asterisk/file.conf', 'some-asterisk/file.conf-file'],
|
||||
\ 'astro': ['file.astro'],
|
||||
\ 'atlas': ['file.atl', 'file.as'],
|
||||
\ 'authzed': ['file.zed'],
|
||||
\ 'autohotkey': ['file.ahk'],
|
||||
\ 'autoit': ['file.au3'],
|
||||
\ 'automake': ['GNUmakefile.am', 'makefile.am', 'Makefile.am'],
|
||||
|
Loading…
Reference in New Issue
Block a user