khaveesh.vim-fish-syntax/ftdetect/fish.vim
Khaveesh N (MBP) 51f189fe23
Revamped syntax
2021-03-15 03:33:58 +05:30

8 lines
241 B
VimL

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