diff options
author | Gregory Anders <greg@gpanders.com> | 2024-09-17 14:15:58 -0500 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2024-09-17 14:17:33 -0500 |
commit | 13d6f6cbb2337c1db5b3fceb607d36a2a632dc03 (patch) | |
tree | 847ca11c82e0452b2cf1c84245818618dd6b3c9e /runtime/lua/vim | |
parent | a0d8c2b86e788ce4273f0b8df258cd9e8e432d38 (diff) | |
download | rneovim-13d6f6cbb2337c1db5b3fceb607d36a2a632dc03.tar.gz rneovim-13d6f6cbb2337c1db5b3fceb607d36a2a632dc03.tar.bz2 rneovim-13d6f6cbb2337c1db5b3fceb607d36a2a632dc03.zip |
vim-patch:9.1.0734: filetype: jinja files are not recognized
Problem: filetype: jinja files are not recognized
Solution: detect '*.jinja' files a jinja filetype,
include jinja syntax script (Gregory Anders)
related: vim/vim#15689
https://github.com/vim/vim/commit/202c467bb37b894ada6377d3f2621c103f324757
Co-authored-by: Gregory Anders <greg@gpanders.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 bfe700f8dd..d549428158 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -612,6 +612,7 @@ local extension = { jsx = 'javascriptreact', clp = 'jess', jgr = 'jgraph', + jinja = 'jinja', jjdescription = 'jj', j73 = 'jovial', jov = 'jovial', |