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/go.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 luasnip_snippets/go.json (limited to 'luasnip_snippets/go.json') diff --git a/luasnip_snippets/go.json b/luasnip_snippets/go.json new file mode 100644 index 0000000..1a52ce5 --- /dev/null +++ b/luasnip_snippets/go.json @@ -0,0 +1,26 @@ +{ + "map": { + "prefix": "map", + "description": "Map type", + "body": "map[${1:keytype}]${2:valtype}" + }, + ":": { + "prefix": ":", + "description": "Variable declaration :=", + "body": "${1:name} := ${0:value}" + }, + "json": { + "prefix": "json", + "description": "JSON field", + "body": "`json:\"${1:displayName}\"`" + }, + "err": { + "prefix": "err", + "description": "Basic error handling", + "body": [ + "if err != nil {", + "\tlog.${1:Fatal}(err)", + "\\}" + ] + } +} -- cgit v1.2.3