diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-01 12:39:52 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-01 18:06:34 -0500 |
commit | 9c1a31927d946e6e3d25cb31cbf62e2ba1c0e8f2 (patch) | |
tree | b64e8923c1442d7d2b4f3266c7ce48b79912e908 /src | |
parent | 26199fedca0c90bdfb1b3279de2ad737fd308e52 (diff) | |
download | rneovim-9c1a31927d946e6e3d25cb31cbf62e2ba1c0e8f2.tar.gz rneovim-9c1a31927d946e6e3d25cb31cbf62e2ba1c0e8f2.tar.bz2 rneovim-9c1a31927d946e6e3d25cb31cbf62e2ba1c0e8f2.zip |
vim-patch:8.2.0161: not recognizing .gv file as dot filetype
Problem: Not recognizing .gv file as dot filetype.
Solution: Add *.gv to dot pattern. (closes vim/vim#5544)
https://github.com/vim/vim/commit/f8ddb25789a6af530e69f499907979dfbff1c1ea
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 968bf01c15..7290cceb0b 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -139,7 +139,7 @@ let s:filename_checks = { \ 'dockerfile': ['Dockerfile', 'file.Dockerfile'], \ 'dosbatch': ['file.bat', 'file.sys'], \ 'dosini': ['.editorconfig', '/etc/yum.conf', 'file.ini'], - \ 'dot': ['file.dot'], + \ 'dot': ['file.dot', 'file.gv'], \ 'dracula': ['file.drac', 'file.drc', 'filelvs', 'filelpe'], \ 'dsl': ['file.dsl'], \ 'dtd': ['file.dtd'], |