aboutsummaryrefslogtreecommitdiff
path: root/vim/filetype.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/filetype.vim')
-rw-r--r--vim/filetype.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/vim/filetype.vim b/vim/filetype.vim
index ad2545a0..bda01984 100644
--- a/vim/filetype.vim
+++ b/vim/filetype.vim
@@ -42,6 +42,13 @@ function! s:StripRepeat()
endfunction
+" Check if the first line is a shebang
+function! s:CheckShebang()
+ if line('''[') == 1 && stridx(getline(1), '#!') == 0
+ doautocmd filetypedetect BufRead
+ endif
+endfunction
+
" Use our own filetype detection rules
augroup filetypedetect
autocmd!
@@ -508,4 +515,10 @@ augroup filetypedetect
\| runtime scripts.vim
\|endif
+ " If supported, on leaving insert mode, check whether the first line was "
+ " changed and is a shebang format, and if so, re-run filetype detection
+ if v:version > 700
+ autocmd InsertLeave * call s:CheckShebang()
+ endif
+
augroup END