mirror of
https://github.com/jelera/vim-javascript-syntax.git
synced 2025-12-08 21:54:52 +08:00
Set filetype based on node shebang
Recognizes the node shebang line and sets the filetype to javascript. Syntax highlights the shebang as well.
This commit is contained in:
6
ftdetect/javascript.vim
Normal file
6
ftdetect/javascript.vim
Normal file
@@ -0,0 +1,6 @@
|
||||
function! s:DetectJS()
|
||||
if getline(1) =~# '^#!.*/bin/env\s\+node\>'
|
||||
setfiletype javascript
|
||||
endif
|
||||
endfunction
|
||||
autocmd BufNewFile,BufRead * call s:DetectJS()
|
||||
Reference in New Issue
Block a user