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

Smart Region

by gbaptista ST3

Open and search files directly from your source code.

Details

Installs

  • Total 245
  • Win 144
  • Mac 61
  • Linux 40
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 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17
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

Smart Region

Open and search files directly from your source code.

Demo: Smart Region

Hiding Text Underline

User/Preferences.sublime-settings:

"smart_region_draw_regions": ["hide_on_minimap", "hidden"]

Command Palette

Smart Region: Open smart_region_open

Smart Region: Create Regions smart_region_create_regions

Default Shortcuts

  • Open with keyboard: ctrl + enter
  • Open with mouse: ctrl + double click

Settings

User/Preferences.sublime-settings:

"smart_region_create_regions_on": ["load", "modified"],

// Draw Regions Options:
// draw_empty, hide_on_minimap, draw_empty_as_overwrite, draw_no_fill
// draw_no_outline, draw_solid_underline, draw_stippled_underline
// draw_squiggly_underline, persistent, hidden
// Suggested combinations:
//
//   ["hide_on_minimap", "draw_no_fill", "draw_no_outline", "draw_stippled_underline"]
//
//   ["hide_on_minimap", "draw_no_fill", "draw_no_outline", "draw_solid_underline"]
//
//   ["hide_on_minimap", "hidden"]
//
"smart_region_draw_regions": ["hide_on_minimap", "draw_no_fill", "draw_no_outline", "draw_solid_underline"],

"smart_region_debug": false

Custom Shortcuts

User/Default.sublime-keymap:

{ "keys": ["ctrl+enter"], "command": "smart_region_open" }

User/Default.sublime-mousemap:

{
  "button": "button1", "count": 2, "modifiers": ["ctrl"],
  "press_command": "drag_select",
  "command": "smart_region_open"
}

To-Do

  • URL's support.
  • Improve performance for large files.