khaveesh.vim-fish-syntax/ftdetect/fish.vim
Khaveesh N (MBP) d80e11fbbc
Cleanup
2021-09-28 20:38:55 +05:30

8 lines
246 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