diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-30 16:06:22 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-30 16:06:22 +0100 |
| commit | f1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch) | |
| tree | bbe77eacaef8ab8a5999e517c3006973c9e3e44c /luasnip_snippets/javascript.json | |
| parent | 823302458ec6c53455a3f34674415c43ce6a3187 (diff) | |
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'luasnip_snippets/javascript.json')
| -rw-r--r-- | luasnip_snippets/javascript.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/luasnip_snippets/javascript.json b/luasnip_snippets/javascript.json new file mode 100644 index 0000000..7b9e33f --- /dev/null +++ b/luasnip_snippets/javascript.json @@ -0,0 +1,17 @@ +{ + ":,": { + "prefix": ":,", + "description": "Object Value JS", + "body": "${1:value_name}: ${0:value}," + }, + ":": { + "prefix": ":", + "description": "Object key key: 'value'", + "body": "${1:key}: ${2:\"${3:value}\"}${4:, }" + }, + "imp": { + "prefix": "imp", + "description": "import", + "body": "import $2 from $1" + } +} |
