-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
144 lines (113 loc) · 3.52 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
{
"description" : "Highlights the current word selected when double clicking" ,
"version" : "1.0.0" ,
"license" : "MIT" ,
"name" : "highlight-selected" ,
"keywords" : [ "highlight" , "select" , "occurrence" , "mark" ] ,
"homepage" : "https://github.com/Pulsar-Edit-Highlights/selected" ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/Pulsar-Edit-Highlights/selected"
},
"bugs" : {
"url" : "https://github.com/Pulsar-Edit-Highlights/selected/issues"
},
"mainStyleSheet" : "./Resources/Stylesheet.less" ,
"main" : "./Source/App.js" ,
"keymaps" : [ "../Resources/Keymap.json" ] ,
"menus" : [ "../Resources/Menus.json" ] ,
"engines" : {
"pulsar" : ">=1.100.0 <2.0.0"
},
"scripts" : {
"test" : "pulsar --test Tests"
},
"dependencies" : {
"atom-package-deps" : "^7.0.0" ,
"debounce" : "^1.2.0" ,
"grim" : "^2.0.2"
},
"providedServices" : {
"highlightSelected" : {
"description" : "Exposes Highlight Selected Events" ,
"versions" : {
"1.0.0" : "provideHighlightSelectedV1Deprecated" ,
"2.0.0" : "provideHighlightSelectedV2"
}
}
},
"consumedServices" : {
"status-bar" : {
"versions" : {
"^1.0.0" : "consumeStatusBar"
}
},
"scroll-marker" : {
"versions" : {
"0.1.0" : "consumeScrollMarker"
}
}
},
"package-deps" : [{ "name" : "scroll-marker" }],
"configSchema" : {
"onlyHighlightWholeWords" : {
"default" : true ,
"type" : "boolean"
},
"hideHighlightOnSelectedWord" : {
"default" : false ,
"type" : "boolean"
},
"ignoreCase" : {
"default" : false ,
"type" : "boolean"
},
"lightTheme" : {
"default" : false ,
"type" : "boolean"
},
"highlightBackground" : {
"default" : false ,
"type" : "boolean"
},
"minimumLength" : {
"default" : 2 ,
"type" : "integer"
},
"maximumHighlights" : {
"description" : "For performance purposes, the number of highlights is limited." ,
"default" : 500 ,
"type" : "integer"
},
"timeout" : {
"description" : "Defers searching for matching strings for X ms." ,
"default" : 20 ,
"type" : "integer"
},
"showInStatusBar" : {
"description" : "Show how many matches there are." ,
"default" : true ,
"type" : "boolean"
},
"highlightInPanes" : {
"description" : "Highlight selection in another panes." ,
"default" : true ,
"type" : "boolean"
},
"statusBarString" : {
"description" : "The text to show in the status bar. %c = number of occurrences." ,
"default" : "Highlighted: %c" ,
"type" : "string"
},
"allowedCharactersToSelect" : {
"description" : "Non Word Characters that are allowed to be selected." ,
"default" : "$@%-" ,
"type" : "string"
},
"showResultsOnScrollBar" : {
"description" : "Show highlight on the scroll bar." ,
"default" : false ,
"type" : "boolean"
}
}
}