summaryrefslogtreecommitdiff
path: root/luasnip_snippets/tcl.json
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
commitf1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch)
treebbe77eacaef8ab8a5999e517c3006973c9e3e44c /luasnip_snippets/tcl.json
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'luasnip_snippets/tcl.json')
-rw-r--r--luasnip_snippets/tcl.json69
1 files changed, 69 insertions, 0 deletions
diff --git a/luasnip_snippets/tcl.json b/luasnip_snippets/tcl.json
new file mode 100644
index 0000000..f97bad5
--- /dev/null
+++ b/luasnip_snippets/tcl.json
@@ -0,0 +1,69 @@
+{
+ "for": {
+ "prefix": "for",
+ "description": "for... (for)",
+ "body": [
+ "for {${1:set i 0}\\} {${2:\\$i < \\$n}\\} {${3:incr i}\\} {",
+ "\t$4",
+ "\\}",
+ ""
+ ],
+ "luasnip": {
+ "priority": -50
+ }
+ },
+ "foreach": {
+ "prefix": "foreach",
+ "description": "foreach... (foreach)",
+ "body": [
+ "foreach ${1:var} ${2:\\$list} {",
+ "\t$3",
+ "\\}",
+ ""
+ ]
+ },
+ "if": {
+ "prefix": "if",
+ "description": "if... (if)",
+ "body": [
+ "if {${1:condition}\\} {",
+ "\t$2",
+ "\\}",
+ ""
+ ]
+ },
+ "proc": {
+ "prefix": "proc",
+ "description": "proc... (proc)",
+ "body": [
+ "proc ${1:name} {${2:args}\\} \\",
+ "{",
+ "\t$3",
+ "\\}",
+ ""
+ ]
+ },
+ "switch": {
+ "prefix": "switch",
+ "description": "switch... (switch)",
+ "body": [
+ "switch ${1:-exact} -- ${2:\\$var} {",
+ "\t${3:match} {",
+ "\t\t$4",
+ "\t\\}",
+ "\tdefault {$5\\}",
+ "\\}",
+ ""
+ ]
+ },
+ "while": {
+ "prefix": "while",
+ "description": "while... (while)",
+ "body": [
+ "while {${1:condition}\\} {",
+ "\t$2",
+ "\\}",
+ ""
+ ]
+ }
+}