forked from atom/find-and-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.54 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
{
"name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
"version": "0.208.1",
"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-all",
"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": {
"element-resize-detector": "^1.1.10",
"etch": "0.9.3",
"fs-plus": "^3.0.0",
"temp": "^0.8.3",
"underscore-plus": "1.x"
},
"devDependencies": {
"coffeelint": "^1.9.7",
"dedent": "^0.6.0"
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
}
},
"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."
},
"projectSearchResultsPaneSplitDirection": {
"type": "string",
"default": "none",
"enum": [
"none",
"right",
"down"
],
"title": "Direction to open results pane",
"description": "Direction to split the active pane when showing project search results. If 'none', the results will be shown in the active 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."
},
"searchContextLineCountBefore": {
"type": "integer",
"default": 0,
"minimum": 0,
"description": "The number of extra lines of context to show before the match for project results"
},
"searchContextLineCountAfter": {
"type": "integer",
"default": 0,
"minimum": 0,
"description": "The number of extra lines of context to show after the match for project results"
},
"showSearchWrapIcon": {
"type": "boolean",
"default": true,
"title": "Show Search Wrap Icon",
"description": "Display a visual cue over the editor when looping through search results."
}
}
}