forked from atom/find-and-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
{
"name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
"version": "0.201.0",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"project-find:show",
"project-find:toggle",
"project-find:show-in-current-directory",
"find-and-replace:show",
"find-and-replace:toggle",
"find-and-replace:find-next",
"find-and-replace:find-previous",
"find-and-replace:find-next-selected",
"find-and-replace:find-previous-selected",
"find-and-replace:use-selection-as-find-pattern",
"find-and-replace:show-replace",
"find-and-replace:replace-next",
"find-and-replace:replace-all",
"find-and-replace:select-next",
"find-and-replace:select-all",
"find-and-replace:clear-history"
]
},
"repository": "https://github.com/atom/find-and-replace",
"engines": {
"atom": "*"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0",
"fs-plus": "2.x",
"temp": "0.8.1",
"underscore-plus": "1.x"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"providedServices": {
"find-and-replace": {
"description": "Atom's bundled find-and-replace package",
"versions": {
"0.0.1": "provideService"
}
}
},
"configSchema": {
"focusEditorAfterSearch": {
"type": "boolean",
"default": false,
"description": "Focus the editor and select the next match when a file search is executed. If no matches are found, the editor will not be focused."
},
"openProjectFindResultsInRightPane": {
"type": "boolean",
"default": false,
"description": "When a project-wide search is executed, open the results in a split pane instead of a tab in the same pane."
},
"closeFindPanelAfterSearch": {
"type": "boolean",
"default": false,
"title": "Close Project Find Panel After Search",
"description": "Close the find panel after executing a project-wide search."
},
"scrollToResultOnLiveSearch": {
"type": "boolean",
"default": false,
"title": "Scroll To Result On Live-Search (incremental find in buffer)",
"description": "Scroll to and select the closest match while typing in the buffer find box."
},
"liveSearchMinimumCharacters": {
"type": "integer",
"default": 3,
"minimum": 0,
"description": "The minimum number of characters which need to be typed into the buffer find box before search starts matching and highlighting matches as you type."
},
"showSearchWrapIcon": {
"type": "boolean",
"default": true,
"title": "Show Search Wrap Icon",
"description": "Display a visual cue over the editor when looping through search results."
}
}
}