diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-16 20:41:10 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-17 12:42:27 -0500 |
commit | 7befdb34198b3d0f570e5922fc2b9d0825dd69a1 (patch) | |
tree | 2ad3f4a95138e39c07d625aafc5aaf37034815c7 /runtime | |
parent | 0f2d37f11fac7eed4617684bad2771e864818a8f (diff) | |
download | rneovim-7befdb34198b3d0f570e5922fc2b9d0825dd69a1.tar.gz rneovim-7befdb34198b3d0f570e5922fc2b9d0825dd69a1.tar.bz2 rneovim-7befdb34198b3d0f570e5922fc2b9d0825dd69a1.zip |
vim-patch:8.2.2353: spartql files are not detected
Problem: Spartql files are not detected.
Solution: Add the sparql filetype. (closes vim/vim#7679)
https://github.com/vim/vim/commit/17d015b2438e51d4d42d72720611d16c772cc4bb
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index ba81a3348e..9104519451 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1620,6 +1620,9 @@ au BufNewFile,BufRead *.mib,*.my setf mib au BufNewFile,BufRead *.hog,snort.conf,vision.conf setf hog au BufNewFile,BufRead *.rules call dist#ft#FTRules() +" SPARQL queries +au BufNewFile,BufRead *.rq,*.sparql setf sparql + " Spec (Linux RPM) au BufNewFile,BufRead *.spec setf spec |