0
0
mirror of https://github.com/vim/vim.git synced 2025-10-18 07:54:29 -04:00

Runtime file updates.

This commit is contained in:
Bram Moolenaar
2017-03-05 17:04:09 +01:00
parent 066029ef92
commit 214641f77d
190 changed files with 1086 additions and 892 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