-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "smalls",
"main": "./lib/main",
"version": "0.3.0",
"description": "[Deprecated] Rapid cursor positioning across any visible chars with search and jump.",
"activationCommands": {
"atom-workspace": [
"smalls:start"
]
},
"keywords": [],
"repository": "https://github.com/t9md/atom-smalls",
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"underscore-plus": "^1.6.6"
},
"configSchema": {
"labelChars": {
"order": 1,
"type": "string",
"default": ";ABCDEFGHIJKLMNOPQRSTUVWXYZ",
"description": "Always be matched with case insensitive"
},
"labelPosition": {
"order": 2,
"type": "string",
"default": "start",
"enum": [
"start",
"end"
]
},
"jumpTriggerInputLength": {
"order": 3,
"type": "integer",
"minimum": 0,
"default": 0,
"description": "0 means disable. If input exceed this length, automatically start jump mode"
},
"flashOnLand": {
"order": 32,
"type": "boolean",
"default": true,
"description": "flash effect on land"
},
"flashType": {
"order": 35,
"type": "string",
"default": "word",
"enum": [
"match",
"word"
],
"description": "Range to be flashed"
},
"showDeprecationWarning": {
"order": 36,
"type": "boolean",
"default": true
}
}
}