-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
160 lines (160 loc) Β· 4.1 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "jump",
"displayName": "Jump",
"description": "πββοΈ Jump/Select to the Start/End of a word in VSCode",
"version": "0.8.0",
"publisher": "wenfangdu",
"icon": "images/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wenfangdu/vscode-jump"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"acejump",
"code",
"column",
"cursor",
"easymotion",
"emacs",
"end",
"fast",
"go",
"jump",
"jumpy",
"keyboard",
"line",
"mark",
"move",
"movement",
"navigation",
"neovim",
"productivity",
"quick",
"rapid",
"select",
"shortcut",
"start",
"to",
"util",
"utility",
"vim",
"word"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "jump-extension.jump-to-the-start-of-a-word",
"title": "Jump to the Start of a word"
},
{
"command": "jump-extension.jump-to-the-end-of-a-word",
"title": "Jump to the End of a word"
},
{
"command": "jump-extension.select-to-the-start-of-a-word",
"title": "Select to the Start of a word"
},
{
"command": "jump-extension.select-to-the-end-of-a-word",
"title": "Select to the End of a word"
},
{
"command": "jump-extension.exit",
"title": "Exit jump mode"
}
],
"keybindings": [
{
"key": "alt+q alt+q",
"command": "jump-extension.jump-to-the-start-of-a-word",
"when": "editorTextFocus"
},
{
"key": "alt+q alt+w",
"command": "jump-extension.jump-to-the-end-of-a-word",
"when": "editorTextFocus"
},
{
"key": "alt+q alt+e",
"command": "jump-extension.select-to-the-start-of-a-word",
"when": "editorTextFocus"
},
{
"key": "alt+q alt+r",
"command": "jump-extension.select-to-the-end-of-a-word",
"when": "editorTextFocus"
},
{
"key": "escape",
"command": "jump-extension.exit",
"when": "editorTextFocus && jump.isInJumpMode"
},
{
"key": "space",
"command": "jump-extension.exit",
"when": "editorTextFocus && jump.isInJumpMode"
},
{
"key": "enter",
"command": "jump-extension.exit",
"when": "editorTextFocus && jump.isInJumpMode"
}
],
"configuration": {
"title": "Jump",
"properties": {
"jump.primaryCharset": {
"type": "string",
"pattern": "^(?:([a-z0-9])(?!.*\\1))+$",
"patternErrorMessage": "Please enter unique characters from [a-z0-9].",
"default": "acdefijklmnopqrsvwxz",
"description": "Set of characters used to create jump key combinations. The first letters will occur the closest to the last cursor position."
},
"jump.display.backgroundColor": {
"type": "string",
"default": "#004455",
"description": "Background of decoration."
},
"jump.display.color": {
"type": "string",
"default": "#0af0c1",
"description": "Text color of decoration."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "cross-env NODE_ENV=production eslint src --ext ts --fix",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm install && npm run lint && npm run compile"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^8.2.3",
"@types/node": "^15.14.9",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"glob": "^7.2.0",
"mocha": "^8.4.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"vscode-test": "^1.6.1"
}
}