ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Whoosh​Search

by rokartnaz ST3

Blazing fast out of the box search for ST3 projects of any size.

Details

Installs

  • Total 248
  • Win 127
  • Mac 73
  • Linux 48
Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18 May 17 May 16
Windows 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
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

  1. Using Package Control - Recommended
  2. Download WhooshSearch repository from github and put it under ST3 Packages folder.

Usage

  1. 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).

  2. ctrl+alt+x / super+alt+x - reset the index.

  3. ctrl+alt+g / super+alt+g - open WhooshSearch input panel. Use arrows UP and DOWN to navigate on search history.

  4. ctrl+s / super+s - saving current file triggers reindexing of the file if it belongs to project.

  5. 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.