mirror of
https://github.com/neovim/neovim.git
synced 2025-10-10 11:56:30 +00:00
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)
f3da4c8427
This commit is contained in:
@@ -1022,6 +1022,7 @@ local extension = {
|
|||||||
texinfo = 'texinfo',
|
texinfo = 'texinfo',
|
||||||
text = 'text',
|
text = 'text',
|
||||||
tfvars = 'terraform-vars',
|
tfvars = 'terraform-vars',
|
||||||
|
thrift = 'thrift',
|
||||||
tla = 'tla',
|
tla = 'tla',
|
||||||
tli = 'tli',
|
tli = 'tli',
|
||||||
toml = 'toml',
|
toml = 'toml',
|
||||||
|
@@ -581,6 +581,7 @@ let s:filename_checks = {
|
|||||||
\ 'texmf': ['texmf.cnf'],
|
\ 'texmf': ['texmf.cnf'],
|
||||||
\ 'text': ['file.text', 'file.txt', 'README', 'LICENSE', 'COPYING', 'AUTHORS', '/usr/share/doc/bash-completion/AUTHORS', '/etc/apt/apt.conf.d/README', '/etc/Muttrc.d/README'],
|
\ 'text': ['file.text', 'file.txt', 'README', 'LICENSE', 'COPYING', 'AUTHORS', '/usr/share/doc/bash-completion/AUTHORS', '/etc/apt/apt.conf.d/README', '/etc/Muttrc.d/README'],
|
||||||
\ 'tf': ['file.tf', '.tfrc', 'tfrc'],
|
\ 'tf': ['file.tf', '.tfrc', 'tfrc'],
|
||||||
|
\ 'thrift': ['file.thrift'],
|
||||||
\ 'tidy': ['.tidyrc', 'tidyrc', 'tidy.conf'],
|
\ 'tidy': ['.tidyrc', 'tidyrc', 'tidy.conf'],
|
||||||
\ 'tilde': ['file.t.html'],
|
\ 'tilde': ['file.t.html'],
|
||||||
\ 'tla': ['file.tla'],
|
\ 'tla': ['file.tla'],
|
||||||
|
Reference in New Issue
Block a user