From 5f1f8d67006d55c542d2fc2993c2d0d9a428a49d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Walle?= Date: Sat, 3 Nov 2012 15:46:39 +0100 Subject: [PATCH] Add snippets for zsh zsh is a seperate filetype from sh in Vim. This uses the sh snippets while changing the shebang-related snippets. --- UltiSnips/zsh.snippets | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 UltiSnips/zsh.snippets diff --git a/UltiSnips/zsh.snippets b/UltiSnips/zsh.snippets new file mode 100644 index 0000000..18a2989 --- /dev/null +++ b/UltiSnips/zsh.snippets @@ -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: