You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 27, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ A plugin for [Sublime Text 2](http://www.sublimetext.com/).
4
4
5
5
## Synopsis
6
6
7
-
This plugin makes it possible to use various external search tools (`grep`, `ack`, `ag`, `git grep`, or `findstr`) to find strings inside your current Sublime Text project.
7
+
This plugin makes it possible to use various external search tools (`grep`, `ack`, `ag`, `git grep`, or `findstr`) to find strings aross your entire current Sublime Text project.
8
8
9
9
It opens a quick selection panel to browse results, and highlights matches inside files.
10
10
@@ -16,14 +16,17 @@ Copy the folder into the Packages folder.
16
16
17
17
## Usage
18
18
19
-
Call the "Search in Project" command.
19
+
* Use the key binding (`⌘⌥^F` on OS X, `Ctrl+Alt+Shift+F` on Windows), or
20
+
* Call the "Search in Project" command;
21
+
* Enter the search query; **the query is passed directly to the shell command.** You are responsible for escaping the query, but on the up side you can specify any command line options to go with it. This plugin doesn't make an effort to abstract you away from search tools, but provides a convenient way of running them from Sublime Text 2 instead.
22
+
* Hit `Enter` (`Return`). In a short while you'll be presented with a "quck select" panel with the search results. Select any file from that panel (it supports fuzzy searching) to go to the match.
20
23
21
24
## Configuration
22
25
23
26
Configuration is stored in a separate, user-specific `SearchInProject.sublime-settings` file. See the default file for configuration options; links to both could be
24
27
found in the main menu in `Preferences -> Package Settings -> Search In Project`.
25
28
26
-
On any OS I recommend you to install [ack](http://betterthangrep.com/), and use it instead of the default `grep`/`findstr`, because it's much faster.
29
+
On any OS I recommend you to install [ack](http://betterthangrep.com/), and use it instead of the default `grep`/`findstr`, because it's much faster.[Here's how to install ack on Windows](http://stackoverflow.com/questions/1023710/how-can-i-install-and-use-ack-library-on-windows).
0 commit comments