aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-07-26 23:08:48 +0200
committerGitHub <noreply@github.com>2022-07-26 23:08:48 +0200
commit7e939ddb874b66414fc09bb1b33c34838b45b184 (patch)
tree1cfaa9bbf68cd85f0473cb76ad1dbb811e4cbf64 /runtime/lua/vim
parent2a9c9371bc6d7e3c92eace673d1ed3740b12a270 (diff)
downloadrneovim-7e939ddb874b66414fc09bb1b33c34838b45b184.tar.gz
rneovim-7e939ddb874b66414fc09bb1b33c34838b45b184.tar.bz2
rneovim-7e939ddb874b66414fc09bb1b33c34838b45b184.zip
vim-patch:9.0.0084: using "terraform" filetype for .tfvars file is bad (#19526)
Problem: Using "terraform" filetype for .tfvars file is bad. Solution: use "terraform-vars", so that different completion and other mechanisms can be used. (Radek Simko, closes vim/vim#10755) https://github.com/vim/vim/commit/15b87b6610bfce0c6296bbbad019c944f88a74ca
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/filetype.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index 8746f9e294..10eff6598c 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -969,7 +969,7 @@ local extension = {
txi = 'texinfo',
texinfo = 'texinfo',
text = 'text',
- tfvars = 'terraform',
+ tfvars = 'terraform-vars',
tla = 'tla',
tli = 'tli',
toml = 'toml',