mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
vim-patch:9.1.0188: filetype: no support for Vento files (#27935)
Problem: Vento files are not recognized.
Solution: Recognize *.vto files as filetype "vento" (wrapperup)
Vento is a templating engine https://vento.js.org/
closes: vim/vim#14229
9f26e5a9bc
Co-authored-by: wrapperup <wrapperup4@gmail.com>
This commit is contained in:
parent
e39d9636af
commit
4694ce6877
@ -1063,6 +1063,7 @@ local extension = {
|
||||
vdmrt = 'vdmrt',
|
||||
vdmsl = 'vdmsl',
|
||||
vdm = 'vdmsl',
|
||||
vto = 'vento',
|
||||
vr = 'vera',
|
||||
vri = 'vera',
|
||||
vrh = 'vera',
|
||||
|
@ -701,6 +701,7 @@ func s:GetFilenameChecks() abort
|
||||
\ 'vdmpp': ['file.vpp', 'file.vdmpp'],
|
||||
\ 'vdmrt': ['file.vdmrt'],
|
||||
\ 'vdmsl': ['file.vdm', 'file.vdmsl'],
|
||||
\ 'vento': ['file.vto'],
|
||||
\ 'vera': ['file.vr', 'file.vri', 'file.vrh'],
|
||||
\ 'verilogams': ['file.va', 'file.vams'],
|
||||
\ 'vgrindefs': ['vgrindefs'],
|
||||
|
Loading…
Reference in New Issue
Block a user