Open and search files directly from your source code.
User/Preferences.sublime-settings:
"smart_region_draw_regions": ["hide_on_minimap", "hidden"]Smart Region: Open smart_region_open
Smart Region: Create Regions smart_region_create_regions
- Open with keyboard: ctrl + enter
- Open with mouse: ctrl + double click
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": falseUser/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"
}- URL's support.
- Improve performance for large files.
