This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
238 lines (238 loc) · 5.95 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"name": "find-jump",
"displayName": "Find => Jump",
"description": "Like Ace Jump, but better. Quickly move cursor to visible location",
"version": "0.6.3",
"publisher": "usernamehw",
"engines": {
"vscode": "^1.57.0"
},
"repository": {
"type": "git",
"url": "https://github.com/usernamehw/vscode-find-jump"
},
"categories": [
"Other"
],
"icon": "img/icon.png",
"qna": false,
"license": "MIT",
"keywords": [
"AceJump",
"EasyMotion",
"jump",
"jumpy",
"cursor",
"move",
"key",
"keyboard",
"keybinding",
"navigation",
"goto"
],
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onCommand:findJump.activate",
"onCommand:findJump.activateWithSelection",
"onCommand:findJump.goToFirstMatch"
],
"main": "./dist/extension",
"contributes": {
"configuration": {
"title": "Find => Jump",
"properties": {
"findJump.jumpChars": {
"type": "string",
"default": "jfdksa;wibceghlmnopqrtuvxyzJFDKSABCEGHILMNOPQRTUVWXYZ",
"markdownDescription": "Use custom alphabet for jump chars. The order is important. Default value is assigned with qwerty keyboard in mind (Particularly, home row keys `A S D F J K L ;` put up front)."
},
"findJump.excludeNextChars": {
"type": "number",
"default": 3,
"description": "Letters are used to type text where to go but also as symbols for quick jump. This setting controls how many next character of the current match will be excluded from being used as a symbol for a jump."
},
"findJump.positionAbsolute": {
"type": "boolean",
"default": false,
"description": "When enabled - position decorations on top of the editor text (without shifting text)."
},
"findJump.onlyVisibleRanges": {
"type": "boolean",
"default": true,
"description": "When enabled - will search only in visible text in editor."
},
"findJump.dimWhenActive": {
"type": "boolean",
"default": false,
"description": "When enabled - will show code as grayscale to see matches more easily."
},
"findJump.activateToToggle": {
"type": "boolean",
"default": true,
"description": "When enabled - will toggle active state for default `findJump.activate*` commands."
},
"findJump.jumpCursorPosition": {
"type": "string",
"default": "start",
"enum": [
"start",
"end"
],
"description": "Place where to jump cursor.",
"enumDescriptions": [
"Jump to the start of the range.",
"Jump to the end of the range."
]
},
"findJump.letterBackground": {
"type": "string",
"default": "#4169E1",
"description": "Background color of the extension's main decoration: letter to jump.",
"format": "color"
},
"findJump.letterForeground": {
"type": "string",
"default": "#ffffff",
"description": "Color of the extension's main decoration: letter to jump.",
"format": "color"
},
"findJump.matchBackground": {
"type": "string",
"default": "editor.wordHighlightBackground",
"description": "",
"format": "color"
},
"findJump.matchForeground": {
"type": "string",
"default": "",
"description": "",
"format": "color"
},
"findJump.scrollbarMatchForeground": {
"type": "string",
"default": "#4169E1",
"description": "Color of the matches in the scrollbar area.",
"format": "color"
},
"findJump.light": {
"type": "object",
"default": {},
"description": "Overwrite colors for light themes.",
"properties": {
"letterBackground": {
"type": "string",
"default": "",
"description": "Background color of the letter for light themes.",
"format": "color"
},
"letterForeground": {
"type": "string",
"default": "",
"description": "Color of the letter for light themes.",
"format": "color"
},
"matchBackground": {
"type": "string",
"default": "",
"description": "",
"format": "color"
},
"matchForeground": {
"type": "string",
"default": "",
"description": "",
"format": "color"
}
}
}
}
},
"commands": [
{
"command": "findJump.activate",
"title": "Activate",
"category": "Find => Jump"
},
{
"command": "findJump.activateWithSelection",
"title": "Activate in selection mode",
"category": "Find => Jump"
},
{
"command": "findJump.goToFirstMatch",
"title": "Jump to first match",
"category": "Find => Jump"
},
{
"command": "findJump.cancel",
"title": "Cancel",
"category": "Find => Jump"
},
{
"command": "findJump.backspace",
"title": "Backspace",
"category": "Find => Jump"
}
],
"keybindings": [
{
"command": "findJump.activate",
"key": "ctrl+;"
},
{
"command": "findJump.cancel",
"key": "escape",
"when": "findJumpActive"
},
{
"command": "findJump.backspace",
"key": "backspace",
"when": "findJumpActive && editorTextFocus"
}
],
"menus": {
"commandPalette": [
{
"command": "findJump.activate",
"when": "never"
},
{
"command": "findJump.activateWithSelection",
"when": "never"
},
{
"command": "findJump.goToFirstMatch",
"when": "never"
},
{
"command": "findJump.cancel",
"when": "never"
},
{
"command": "findJump.backspace",
"when": "never"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production --color",
"watch": "webpack --mode development --watch --stats minimal"
},
"devDependencies": {
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"@types/node": "^14.17.21",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-plugin-no-autofix": "^1.2.3",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}