diff options
author | Amaan Qureshi <amaanq12@gmail.com> | 2023-01-22 18:08:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 07:08:08 +0800 |
commit | 1b642648f6c94c0bc0db521714a922207ef8bbc5 (patch) | |
tree | acfc44123119306d549b56f25d93a06a42c48379 /runtime/lua/vim | |
parent | e5a537c8858b369832942795edd9a5234aa659a5 (diff) | |
download | rneovim-1b642648f6c94c0bc0db521714a922207ef8bbc5.tar.gz rneovim-1b642648f6c94c0bc0db521714a922207ef8bbc5.tar.bz2 rneovim-1b642648f6c94c0bc0db521714a922207ef8bbc5.zip |
vim-patch:9.0.1230: Apache Thrift files are not recognized (#21955)
Problem: Apache thrift files are not recognized.
Solution: Add a pattern for thrift files. (Amaan Qureshi, closes vim/vim#11859)
https://github.com/vim/vim/commit/f3da4c8427b1b12d7aaffa307ec085ca97ea9ad9
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 34815f89ca..9293c828b8 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1022,6 +1022,7 @@ local extension = { texinfo = 'texinfo', text = 'text', tfvars = 'terraform-vars', + thrift = 'thrift', tla = 'tla', tli = 'tli', toml = 'toml', |