From f1eabbaa1b4ff1836d0ee8335b31d009203f3775 Mon Sep 17 00:00:00 2001 From: "Vito G. Graffagnino" Date: Tue, 30 Aug 2022 16:06:22 +0100 Subject: fixed zathura integration with texlab using nvim-texlabconfig --- luasnip_snippets/tcl.json | 69 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 luasnip_snippets/tcl.json (limited to 'luasnip_snippets/tcl.json') 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", + "\\}", + "" + ] + } +} -- cgit v1.2.3