We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43624ca + 9904680 commit fbd8e53Copy full SHA for fbd8e53
snippets/sh-mode/case
@@ -0,0 +1,10 @@
1
+# -*- mode: snippet -*-
2
+# name : case
3
+# key: case
4
+# --
5
+case ${1:cond} in
6
+ ${2:pattern} )
7
+ ${3:stuff}
8
+ ;;
9
+ $0
10
+esac
snippets/sh-mode/select
@@ -0,0 +1,7 @@
+# name : select
+# key: select
+select ${1:var} in ${2:stuff}; do
+done
0 commit comments