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 /runtime | |
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 'runtime')
-rw-r--r-- | runtime/filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 1121ea4460..49e1e9909b 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -487,7 +487,7 @@ au BufNewFile,BufRead *.rul au BufNewFile,BufRead *.com call dist#ft#BindzoneCheck('dcl') " DOT -au BufNewFile,BufRead *.dot setf dot +au BufNewFile,BufRead *.dot,*.gv setf dot " Dylan - lid files au BufNewFile,BufRead *.lid setf dylanlid |