diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-02-03 12:07:59 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-11 19:03:27 +0100 |
commit | e15f2b4b9623df739ca38f1115286b2a4d4956cd (patch) | |
tree | 41b628837ffd6a51c8aa3ddabc6fb2b36d15c3f4 /runtime | |
parent | 6ab9e8759978bc9352505ee40935cccf7dee711e (diff) | |
download | rneovim-e15f2b4b9623df739ca38f1115286b2a4d4956cd.tar.gz rneovim-e15f2b4b9623df739ca38f1115286b2a4d4956cd.tar.bz2 rneovim-e15f2b4b9623df739ca38f1115286b2a4d4956cd.zip |
vim-patch:8.0.0906: don't recognize Couchbase files
Problem: Don't recognize Couchbase files.
Solution: Add filetype detection. (Eugene Ciurana, closes vim/vim#1951)
https://github.com/vim/vim/commit/d9bc8a801aeaffa77d4094d43bf97f0ced3db92b
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 fb2fad1220..a2e1f23bf1 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1334,6 +1334,9 @@ au BufNewFile,BufRead *.mush setf mush " Mutt setup file (also for Muttng) au BufNewFile,BufRead Mutt{ng,}rc setf muttrc +" N1QL +au BufRead,BufNewfile *.n1ql,*.nql setf n1ql + " Nano au BufNewFile,BufRead */etc/nanorc,*.nanorc setf nanorc |