mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:9.0.1274: FIRRTL files are not recognized (#22102)
Problem: FIRRTL files are not recognized.
Solution: Add a pattern for FIRRTL files. (Amaan Qureshi, closes vim/vim#11931)
685bf83b73
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
This commit is contained in:
parent
d3355ad01c
commit
c05b3c3bbd
@ -385,6 +385,7 @@ local extension = {
|
||||
['m4gl'] = 'fgl',
|
||||
['4gl'] = 'fgl',
|
||||
['4gh'] = 'fgl',
|
||||
fir = 'firrtl',
|
||||
fish = 'fish',
|
||||
focexec = 'focexec',
|
||||
fex = 'focexec',
|
||||
|
@ -199,6 +199,7 @@ let s:filename_checks = {
|
||||
\ 'fennel': ['file.fnl'],
|
||||
\ 'fetchmail': ['.fetchmailrc'],
|
||||
\ 'fgl': ['file.4gl', 'file.4gh', 'file.m4gl'],
|
||||
\ 'firrtl': ['file.fir'],
|
||||
\ 'fish': ['file.fish'],
|
||||
\ 'focexec': ['file.fex', 'file.focexec'],
|
||||
\ 'form': ['file.frm'],
|
||||
|
Loading…
Reference in New Issue
Block a user