aboutsummaryrefslogtreecommitdiff
path: root/autoload/shebang_change_filetype.vim
blob: f9911bd484d935be2d1e5ac0500cd2d6f068e827 (plain) (blame)
1
2
3
4
5
6
7
" Check whether the first line was changed and looks like a shebang, and if
" so, re-run filetype detection
function! shebang_change_filetype#Check() abort
  if line("'[") == 1 && strpart(getline(1), 0, 2) ==# '#!'
    doautocmd filetypedetect BufRead
  endif
endfunction