-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
100 lines (100 loc) · 2.42 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "notes",
"displayName": "Notes",
"description": "Syntax highlighting for simple notes in Visual Studio Code",
"icon": "images/icon.png",
"version": "1.3.0",
"publisher": "canadaduane",
"repository": "https://github.com/canadaduane/vscode-notes",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"*"
],
"main": "./vscode/extension",
"contributes": {
"configuration": {
"title": "Notes",
"properties": {
"notes.linkPatterns": {
"type": "object",
"default": {},
"description": "A list of regex to link patterns (e.g. Item: \"ABC-\\d+\" Value: \"https://abc-project.atlassian.net/browse/$0\") that will be applied across all your notes. Turns matching text into links.",
"additionalProperties": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
},
"languages": [
{
"id": "notes",
"aliases": [
"Notes"
],
"extensions": [
".notes"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "notes",
"scopeName": "source.notes",
"path": "./syntaxes/notes.tmLanguage.json"
}
],
"commands": [
{
"command": "notes.cycleTaskForward",
"title": "Task Complete (cycle)"
},
{
"command": "notes.cycleTaskBackward",
"title": "Task Complete (cycle backward)"
}
],
"snippets": [
{
"language": "notes",
"path": "./snippets/newday.json"
}
],
"keybindings": [
{
"command": "notes.cycleTaskForward",
"key": "cmd+l",
"when": "editorTextFocus && isMac"
},
{
"command": "notes.cycleTaskForward",
"key": "ctrl+l",
"when": "editorTextFocus && !isMac"
},
{
"command": "notes.cycleTaskBackward",
"key": "cmd+shift+l",
"when": "editorTextFocus && isMac"
},
{
"command": "notes.cycleTaskBackward",
"key": "ctrl+shift+l",
"when": "editorTextFocus && !isMac"
}
]
},
"__metadata": {
"id": "ccfb475f-3c67-45f3-a691-8588a006e64d",
"publisherDisplayName": "canadaduane",
"publisherId": "49b06e7f-44dd-4bc3-bf81-0c94b2c2c7f0"
}
}