5f1f8d6700
zsh is a seperate filetype from sh in Vim. This uses the sh snippets while changing the shebang-related snippets.
14 lines
149 B
Plaintext
14 lines
149 B
Plaintext
extends sh
|
|
|
|
snippet #! "shebang" !
|
|
#!/bin/zsh
|
|
|
|
endsnippet
|
|
|
|
snippet !env "#!/usr/bin/env (!env)" !
|
|
#!/usr/bin/env zsh
|
|
|
|
endsnippet
|
|
|
|
# vim:ft=snippets:
|