diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-23 13:52:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 13:52:37 +0100 |
commit | 3d62dd207733bbdc46fd5b6807e5d7dcf95681e2 (patch) | |
tree | b46025f3c9c713fdf7a5dfdf43cde8d3f32d9487 /runtime/lua/vim | |
parent | 7717f38d3f81cc739ef2b37829558d3d9eba9591 (diff) | |
download | rneovim-3d62dd207733bbdc46fd5b6807e5d7dcf95681e2.tar.gz rneovim-3d62dd207733bbdc46fd5b6807e5d7dcf95681e2.tar.bz2 rneovim-3d62dd207733bbdc46fd5b6807e5d7dcf95681e2.zip |
vim-patch:8.2.4187: gnuplot file not recognized (#17177)
Problem: Gnuplot file not recognized.
Solution: Recognize ".gnuplot". (closes vim/vim#9588)
https://github.com/vim/vim/commit/ff5cbe8133c6eb5dd86b9e042f32f589627e9bf9
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 c7e18bf186..e5168403b2 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -230,6 +230,7 @@ local extension = { gemini = "gemtext", gift = "gift", gpi = "gnuplot", + gnuplot = "gnuplot", go = "go", gp = "gp", gs = "grads", |