2014-03-11 16:10:50 -04:00
|
|
|
priority -50
|
|
|
|
|
2013-04-13 13:45:21 -04:00
|
|
|
global !p
|
|
|
|
import vim
|
|
|
|
|
|
|
|
# Tests for the existence of a variable declared by Vim's filetype detection
|
|
|
|
# suggesting the type of shell script of the current file
|
|
|
|
def testShell(scope, shell):
|
2014-03-11 16:10:50 -04:00
|
|
|
return vim.eval("exists('" + scope + ":is_" + shell + "')")
|
2013-04-13 13:45:21 -04:00
|
|
|
|
|
|
|
# Loops over the possible variables, checking for global variables
|
|
|
|
# first since they indicate an override by the user.
|
|
|
|
def getShell():
|
2014-03-11 16:10:50 -04:00
|
|
|
for scope in ["g", "b"]:
|
|
|
|
for shell in ["bash", "posix", "sh", "kornshell"]:
|
|
|
|
if testShell(scope, shell) == "1":
|
|
|
|
if shell == "kornshell":
|
|
|
|
return "ksh"
|
|
|
|
if shell == "posix":
|
|
|
|
return "sh"
|
|
|
|
return shell
|
|
|
|
return "sh"
|
2013-04-13 13:45:21 -04:00
|
|
|
endglobal
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# TextMate Snippets #
|
|
|
|
###########################################################################
|
2019-08-22 11:36:17 -04:00
|
|
|
snippet #! "#!/usr/bin/env (!env)" b
|
|
|
|
`!p snip.rv = '#!/usr/bin/env ' + getShell() + "\n" `
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet sbash "safe bash options" b
|
2016-04-03 16:59:57 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
`!p snip.rv ='\n\n' `
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet temp "Tempfile" b
|
2017-07-06 08:57:35 -04:00
|
|
|
${1:TMPFILE}="$(mktemp -t ${3:--suffix=${4:.SUFFIX}} ${2:`!p
|
2012-08-16 23:41:25 -04:00
|
|
|
snip.rv = re.sub(r'[^a-zA-Z]', '_', snip.fn) or "untitled"
|
2017-07-06 08:57:35 -04:00
|
|
|
`}.XXXXXX)"
|
|
|
|
${5:${6/(.+)/trap "/}${6:rm -f '$${1/.*\s//}'}${6/(.+)/" 0 # EXIT\n/}${7/(.+)/trap "/}${7:rm -f '$${1/.*\s//}'; exit 1}${7/(.+)/" 2 # INT\n/}${8/(.+)/trap "/}${8:rm -f '$${1/.*\s//}'; exit 1}${8/(.+)/" 1 15 # HUP TERM\n/}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet /case|sw(itch)?/ "case .. esac (case)" rb
|
2012-08-16 23:41:25 -04:00
|
|
|
case ${1:word} in
|
|
|
|
${2:pattern} )
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}};;
|
2012-08-16 23:41:25 -04:00
|
|
|
esac
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet elif "elif .. (elif)" b
|
2012-08-16 23:41:25 -04:00
|
|
|
elif ${2:[[ ${1:condition} ]]}; then
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet for "for ... done (for)" b
|
2012-08-16 23:41:25 -04:00
|
|
|
for (( i = 0; i < ${1:10}; i++ )); do
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
done
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet forin "for ... in ... done (forin)" b
|
2012-08-16 23:41:25 -04:00
|
|
|
for ${1:i}${2/.+/ in /}${2:words}; do
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
done
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet here "here document (here)"
|
|
|
|
<<-${2:'${1:TOKEN}'}
|
2021-07-30 16:52:54 -04:00
|
|
|
$0`echo \\n`${1/['"`](.+)['"`]/$1/}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet /ift(est)?/ "if ... then (if)" rb
|
|
|
|
if ${2:[ ${1:condition} ]}; then
|
|
|
|
${0:${VISUAL}}
|
|
|
|
fi
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet if "if ... then (if)" b
|
2021-07-30 16:52:54 -04:00
|
|
|
if [[ ${1:condition} ]]; then
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
fi
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet until "until ... (done)" b
|
2012-08-16 23:41:25 -04:00
|
|
|
until ${2:[[ ${1:condition} ]]}; do
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
done
|
|
|
|
endsnippet
|
|
|
|
|
2019-12-30 08:28:38 -05:00
|
|
|
snippet /wh(ile)?/ "while ... (done)" rb
|
2012-08-16 23:41:25 -04:00
|
|
|
while ${2:[[ ${1:condition} ]]}; do
|
2019-12-30 08:28:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
done
|
|
|
|
endsnippet
|
|
|
|
|
2021-07-30 16:52:54 -04:00
|
|
|
snippet func "function() {...}" b
|
|
|
|
${1:function} () {
|
|
|
|
${0:${VISUAL}}
|
|
|
|
}
|
|
|
|
endsnippet
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
# vim:ft=snippets:
|