-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.12 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.12 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
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
{
"name": "xit",
"displayName": "xit!",
"description": "Language support for todo lists with xit syntax.",
"version": "0.0.5",
"publisher": "tscpp",
"repository": "https://github.com/tscpp/xit-vscode",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onCommand:xit.suggest",
"onCommand:xit.toggle",
"onCommand:xit.shuffle"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/vscode": "^1.66.0",
"@types/node": "14.x",
"typescript": "^4.5.5"
},
"contributes": {
"languages": [{
"id": "xit",
"aliases": ["xit!", "xit"],
"extensions": [".xit"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "xit",
"scopeName": "source.xit",
"path": "./syntaxes/xit.tmLanguage.json"
}],
"keybindings": [
{
"command": "xit.suggest",
"key": "ctrl+space",
"when": "editorFocus && editorLangId == 'xit'"
},
{
"command": "xit.toggle",
"key": "ctrl+alt+x",
"when": "editorFocus && editorLangId == 'xit'"
},
{
"command": "xit.shuffle",
"key": "ctrl+alt+d",
"when": "editorFocus && editorLangId == 'xit'"
}
],
"commands": [
{
"title": "Suggest (internal)",
"command": "xit.suggest"
},
{
"title": "Toggle Checkbox",
"command": "xit.toggle"
},
{
"title": "Shuffle Checkbox State",
"command": "xit.shuffle"
}
],
"snippets": [
{
"language": "xit",
"path": "./snippets.json"
}
]
}
}