Add snippets for zsh

zsh is a seperate filetype from sh in Vim. This uses the sh snippets
while changing the shebang-related snippets.
This commit is contained in:
Øystein Walle 2012-11-03 15:46:39 +01:00
parent 39f9d77fe3
commit 5f1f8d6700

13
UltiSnips/zsh.snippets Normal file
View File

@ -0,0 +1,13 @@
extends sh
snippet #! "shebang" !
#!/bin/zsh
endsnippet
snippet !env "#!/usr/bin/env (!env)" !
#!/usr/bin/env zsh
endsnippet
# vim:ft=snippets: