-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
thing.code-snippets
50 lines (50 loc) · 1.63 KB
/
thing.code-snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"pkglink": {
"scope": "markdown",
"prefix": "@thi",
"body": [
"[@thi.ng/$1](https://github.com/thi-ng/umbrella/tree/develop/packages/$1)"
],
"description": "thi.ng umbrella pkg link"
},
"doclink": {
"scope": "markdown",
"prefix": "@doc",
"body": [
"[`${2:name}()`](https://docs.thi.ng/umbrella/${1:pkg}/modules.html#${2:name})"
],
"description": "thi.ng umbrella doc link (function)"
},
"doclink_class": {
"scope": "markdown",
"prefix": "@docc",
"body": [
"[`${2:name}`](https://docs.thi.ng/umbrella/${1:pkg}/classes/${2:name}.html)"
],
"description": "thi.ng umbrella doc link (class)"
},
"doclink_interface": {
"scope": "markdown",
"prefix": "@doci",
"body": [
"[`${2:name}`](https://docs.thi.ng/umbrella/${1:pkg}/interfaces/${2:name}.html)"
],
"description": "thi.ng umbrella doc link (interface)"
},
"imagelink": {
"scope": "markdown",
"prefix": "@img",
"body": [
"![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/$1/$2)"
],
"description": "thi.ng umbrella image link"
},
"pkgtable_entry": {
"scope": "markdown",
"prefix": "@pkgtable",
"body": [
"| [`@thi.ng/$1`](./packages/$1) | [![version](https://img.shields.io/npm/v/@thi.ng/$1.svg)](https://www.npmjs.com/package/@thi.ng/$1) | [changelog](./packages/$1/CHANGELOG.md) | $2 |"
],
"description": "thi.ng pkg table entry"
}
}