diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-03-19 22:31:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 05:31:44 +0800 |
commit | 4694ce68774dd63a63e39009b4a887ac08636987 (patch) | |
tree | b6d946c2ded08510a664719db09f68acaddebbb3 /runtime/lua/vim | |
parent | e39d9636afa287c867e8584b54e68bb51b082f81 (diff) | |
download | rneovim-4694ce68774dd63a63e39009b4a887ac08636987.tar.gz rneovim-4694ce68774dd63a63e39009b4a887ac08636987.tar.bz2 rneovim-4694ce68774dd63a63e39009b4a887ac08636987.zip |
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
https://github.com/vim/vim/commit/9f26e5a9bcedb3caef26e9d77849ea37a3626bbf
Co-authored-by: wrapperup <wrapperup4@gmail.com>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 614aa428e1..af5636a32d 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1063,6 +1063,7 @@ local extension = { vdmrt = 'vdmrt', vdmsl = 'vdmsl', vdm = 'vdmsl', + vto = 'vento', vr = 'vera', vri = 'vera', vrh = 'vera', |