-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.14 KB
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
51
52
53
54
55
{
"name": "things-links",
"displayName": "Things Links",
"description": "Open things:// URLs in Things from VS Code",
"version": "1.0.3",
"publisher": "endgor",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/endgor/vscode-things-links.git"
},
"homepage": "https://github.com/endgor/vscode-things-links#readme",
"bugs": {
"url": "https://github.com/endgor/vscode-things-links/issues"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"keywords": [
"things",
"things3",
"things.app",
"culturedcode",
"todo",
"tasks",
"productivity",
"markdown",
"links"
],
"activationEvents": [
"onCommand:things.openUrl",
"onLanguage:markdown"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "things.openUrl",
"title": "Things: Open URL under Cursor",
"category": "Things"
}
],
"keybindings": [
{
"command": "things.openUrl",
"key": "cmd+shift+t",
"when": "editorTextFocus"
}
]
}
}