diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2024-05-08 18:39:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 18:39:18 -0500 |
commit | d3fa88b70f6f96ec4bc505968afec1dedb3b450b (patch) | |
tree | 36b08541300cee3956a75f25a368fd4f79a9bef1 /runtime/lua | |
parent | 9b1628da986d2858e7716b769ff2ca229f80a88c (diff) | |
download | rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.tar.gz rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.tar.bz2 rneovim-d3fa88b70f6f96ec4bc505968afec1dedb3b450b.zip |
vim-patch:9.1.0396: filetype: jj files are not recognized (#28672)
Problem: jj files are not recognized
Solution: recognize '*.jjdescription' files as jj filetype
(Gregory Anders)
See: https://github.com/martinvonz/jj
closes: vim/vim#14733
https://github.com/vim/vim/commit/6a4ea471d28107c4078e106ace1bdc0c54bf946b
Diffstat (limited to 'runtime/lua')
-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 3b7ea03c2d..1ea1bbccf6 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -570,6 +570,7 @@ local extension = { jsx = 'javascriptreact', clp = 'jess', jgr = 'jgraph', + jjdescription = 'jj', j73 = 'jovial', jov = 'jovial', jovial = 'jovial', |