vim-patch:214641f77df6

Runtime file updates.

214641f77d

N/A:
vim-patch:26a280c47a1c
This commit is contained in:
Justin M. Keyes
2017-11-06 05:05:54 +01:00
parent 8f03014e88
commit 93fb7383a3
183 changed files with 744 additions and 579 deletions

View File

@@ -1,7 +1,7 @@
" Vim support file to detect file types in scripts
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2016 May 21
" Last change: 2017 Mar 04
" This file is called by an autocommand for every file that has just been
" loaded into a buffer. It checks if the type of file can be recognized by
@@ -124,6 +124,10 @@ if s:line1 =~ "^#!"
elseif s:name =~ 'ruby'
set ft=ruby
" JavaScript
elseif s:name =~ 'node\(js\)\=\>' || s:name =~ 'rhino\>'
set ft=javascript
" BC calculator
elseif s:name =~ '^bc\>'
set ft=bc
@@ -156,6 +160,14 @@ if s:line1 =~ "^#!"
elseif s:name =~ 'escript'
set ft=erlang
" Haskell
elseif s:name =~ 'haskell'
set ft=haskell
" Scala
elseif s:name =~ 'scala\>'
set ft=scala
endif
unlet s:name