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 237
  • Win 122
  • Mac 68
  • Linux 47
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 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
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 1 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.