diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-16 17:41:02 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-16 17:41:02 +0100 |
commit | 036986f1507d223549d110af300144468bd3a1f7 (patch) | |
tree | 4ceb878909e769f23d6deeae3bbb03d16e974f0d /runtime/filetype.vim | |
parent | 8820b48654b62472821d9b155fe03ab7ac13a05c (diff) | |
download | vim-036986f1507d223549d110af300144468bd3a1f7.zip |
Update runtime files.
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r-- | runtime/filetype.vim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 20e9af4a8..4bdfeb220 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1,7 +1,7 @@ " Vim support file to detect file types " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2017 Mar 04 +" Last Change: 2017 Mar 13 " Listen very carefully, I will say this only once if exists("did_load_filetypes") @@ -1366,6 +1366,9 @@ endfunc " Not Quite C au BufNewFile,BufRead *.nqc setf nqc +" NSE - Nmap Script Engine - uses Lua syntax +au BufNewFile,BufRead *.nse setf lua + " NSIS au BufNewFile,BufRead *.nsi,*.nsh setf nsis @@ -2281,7 +2284,7 @@ au BufNewFile,BufRead .tidyrc,tidyrc setf tidy au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf " tmux configuration -au BufNewFile,BufRead tmux*.conf setf tmux +au BufNewFile,BufRead {.,}tmux*.conf setf tmux " TPP - Text Presentation Program au BufNewFile,BufReadPost *.tpp setf tpp |