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 /src | |
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 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 014cb929bf..e2cf0c3e69 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -203,7 +203,7 @@ let s:filename_checks = { \ 'gitsendemail': ['.gitsendemail.msg.xxxxxx'], \ 'gkrellmrc': ['gkrellmrc', 'gkrellmrc_x'], \ 'gnash': ['gnashrc', '.gnashrc', 'gnashpluginrc', '.gnashpluginrc'], - \ 'gnuplot': ['file.gpi'], + \ 'gnuplot': ['file.gpi', '.gnuplot'], \ 'go': ['file.go'], \ 'gomod': ['go.mod'], \ 'gp': ['file.gp', '.gprc'], |