WhooshSearch
Blazing fast out of the box search for ST3 projects of any size.
Details
Installs
- Total 241
- Win 124
- Mac 70
- Linux 47
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
WhooshSearch
A plugin for Sublime Text 3
About
WhooshSearch is a ST3 plugin which allows to index sublime projects of any size and to search for any string of text within a project blazingly fast. Search results are presented as a standard ST3 “Find Results” view with an ability to jump into files containing search hits. WhooshSearch plugin is extremely useful for working on huge projects or on codebases located remotely with high ping latency.
WhooshSearch uses Whoosh Search Engine code under the hood and does not require any additional software for its work. Just install the plugin and enjoy!
Installation
- Using Package Control - Recommended
- Download WhooshSearch repository from github and put it under ST3 Packages folder.
Usage
ctrl+alt+i / super+alt+i - build a project index from scratch if it does not exists or incremetally (only files that were changed from last index build will be reindexed).
ctrl+alt+x / super+alt+x - reset the index.
ctrl+alt+g / super+alt+g - open WhooshSearch input panel. Use arrows UP and DOWN to navigate on search history.
ctrl+s / super+s - saving current file triggers reindexing of the file if it belongs to project.
Whoosh Find Results - double click on search hit to jump into the file on specific line where hit was located.
Edit Default (Windows).sublime-keymap (Linux or OSX) to change default plugin hotkeys.
Note: WhooshSearch uses status bar (bottom side) to notify users about all its activities.
Settings
{
// Choose folders to skip while indexing
"skip_folders":
[
".svn",
".git",
".hg",
"CVS",
"CMpub",
"linux30",
"linux50"
],
// Choose file extensions to skip while indexing
"skip_file_extensions":
[
"txt"
],
// Choose file names (without path) to skip while indexing
"skip_files":
[
"TODO.txt"
],
// Store files content in index. Allows not to reread files while searching.
// Indexing time and index space are increased if this option is set to true.
// Search time is reduced if this option is set to true.
"store_content" : true,
// Maximum amount of memory in Mb to use while indexing.
"ram_limit_mb" : 256
}
Edit WhooshSearch.sublime-settings to change the default plugin configuration.
Note: a sublime project won't be reindexed automatically when plugin configuration is changed.