This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
SearchInProject.sublime-settings
44 lines (37 loc) · 2.07 KB
/
SearchInProject.sublime-settings
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
/*
SearchInProject default settings
Do not change this file; change your user settings file instead
*/
{
/* What engine to use; one of grep, ack, the_silver_searcher, or git_grep (or find_str, on Windows) */
/* The default is grep because it's widely available on *nix machines, but ack and The Silver Searcher are both faster, */
/* and git grep is also faster, but only works inside a Git repository */
"search_in_project_engine": "grep",
"search_in_project_show_list_by_default": "false",
/* Grep configuration */
/* Path to grep executable; if the standard one doesn't work for you, you can specify an explicit path in your user config file. */
"search_in_project_Grep_path_to_executable": "grep",
/* Do NOT change these options; they are expected to be present for SearchInProject to work correctly. */
"search_in_project_Grep_mandatory_options": "-nr",
/* Specify additional options to be used with all searches here. */
"search_in_project_Grep_common_options": "",
/* Ack configuration */
"search_in_project_Ack_path_to_executable": "ack",
"search_in_project_Ack_mandatory_options": "",
"search_in_project_Ack_common_options": "--type-add haml=.haml --type-add js=.jsx",
/* TheSilverSearcher configuration */
"search_in_project_TheSilverSearcher_path_to_executable": "ag",
"search_in_project_TheSilverSearcher_mandatory_options": "--column --search-files --nogroup --nocolor",
/* ThePlatinumSearcher configuration */
"search_in_project_ThePlatinumSearcher_path_to_executable": "pt",
"search_in_project_ThePlatinumSearcher_mandatory_options": "--column --nogroup --nocolor",
/* Ripgrep configuration */
"search_in_project_Ripgrep_path_to_executable": "rg",
"search_in_project_Ripgrep_mandatory_options": "--column --no-heading --color never",
/* GitGrep configuration */
"search_in_project_GitGrep_path_to_executable": "git",
"search_in_project_GitGrep_mandatory_options": "grep --line",
/* FindStr configuration */
"search_in_project_FindStr_path_to_executable": "findstr",
"search_in_project_FindStr_mandatory_options": "/n /s /p"
}