khaveesh.vim-fish-syntax/ftdetect/fish.vim
Khaveesh N (MBP) f3744201a1
Indent
2022-08-05 07:32:59 +05:30

8 lines
228 B
VimL

autocmd BufNewFile,BufRead *.fish setfiletype fish
" Detect fish scripts by the shebang line.
autocmd BufNewFile,BufRead,StdinReadPost *
\ if getline(1) =~ '^#!.*\Wfish\s*$' |
\ setfiletype fish |
\ endif