aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/tcl.snippets
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-06-30 16:03:25 +0200
committerKarel Kočí <cynerd@email.cz>2016-06-30 16:03:25 +0200
commite573b3020c032400eed60b649a2cbf55266e6bb0 (patch)
tree8f572394ac8433529c7a8e70d160a2fbe8268b4e /vim/bundle/vim-snippets/snippets/tcl.snippets
parentb8c667bd64b3edd38d56c63c5bd1db53a23b4499 (diff)
downloadmyconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.gz
myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.bz2
myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.zip
Add current configurations from old repository
Diffstat (limited to 'vim/bundle/vim-snippets/snippets/tcl.snippets')
-rw-r--r--vim/bundle/vim-snippets/snippets/tcl.snippets96
1 files changed, 96 insertions, 0 deletions
diff --git a/vim/bundle/vim-snippets/snippets/tcl.snippets b/vim/bundle/vim-snippets/snippets/tcl.snippets
new file mode 100644
index 0000000..9da703c
--- /dev/null
+++ b/vim/bundle/vim-snippets/snippets/tcl.snippets
@@ -0,0 +1,96 @@
+# #!/usr/bin/env tclsh
+snippet #!
+ #!/usr/bin/env tclsh
+
+# Process
+snippet pro
+ proc ${1:function_name} {${2:args}} {
+ ${0}
+ }
+#xif
+snippet xif
+ ${1:expr}? ${2:true} : ${0:false}
+# Conditional
+snippet if
+ if {${1}} {
+ ${0}
+ }
+# Conditional if..else
+snippet ife
+ if {${1}} {
+ ${2}
+ } else {
+ ${0:# else...}
+ }
+snippet eif
+ elseif {${1}} {
+ ${0}
+ }
+# Conditional if..elsif..else
+snippet ifee
+ if {${1}} {
+ ${2}
+ } elseif {${3}} {
+ ${4:# elsif...}
+ } else {
+ ${0:# else...}
+ }
+# If catch then
+snippet ifc
+ if { [catch {${1:#do something...}} ${2:err}] } {
+ ${0:# handle failure...}
+ }
+# Catch
+snippet catch
+ catch {${1}} ${2:err} ${0:options}
+# While Loop
+snippet wh
+ while {${1}} {
+ ${0}
+ }
+# For Loop
+snippet for
+ for {set ${2:var} 0} {$$2 < ${1:count}} {${3:incr} $2} {
+ ${0}
+ }
+# Foreach Loop
+snippet fore
+ foreach ${1:x} {${2:#list}} {
+ ${0}
+ }
+# after ms script...
+snippet af
+ after ${1:ms} ${0:#do something}
+# after cancel id
+snippet afc
+ after cancel ${0:id or script}
+# after idle
+snippet afi
+ after idle ${0:script}
+# after info id
+snippet afin
+ after info ${0:id}
+# Expr
+snippet exp
+ expr {${0:#expression here}}
+# Switch
+snippet sw
+ switch ${1:var} {
+ ${3:pattern 1} {
+ ${0:#do something}
+ }
+ default {
+ ${2:#do something}
+ }
+ }
+# Case
+snippet ca
+ ${1:pattern} {
+ ${2:#do something}
+ }
+# Namespace eval
+snippet ns
+ namespace eval ${1:path} {${0:#script...}}
+# Namespace current
+snippet nsc
+ namespace current