Releases: warmdev/SublimeOutline
Add option to change outline pane width
Added option to change the outline pane width. To change it, click "Preferences > Package Settings > Outline > Settings - User", and add the following. Default value is 0.2 which is 20% of the entire window width.
{
"outline_width": 0.2
}
Added option to inherit editor color scheme
Added option to use editor color scheme for outline. Change setting outline_inherit_color_scheme to true. Close and reopen outline tab for the change to take effect. If you change the editor color scheme, close and reopen outline tab for the new color scheme to take effect.
New highlight options, and bug fix
-
Fixed issue where after closing outline sidebar, focus is on an empty tab
-
When clicking on a symbol item in the outline pane, highlight in the main view depends on the setting
outline_main_view_highlight_mode
:cursor
: no highlight, put cursor at the end of the symbol linesymbol
: highlight the current symbol (same as previous implementation)block
: highlight the entire symbol block (i.e. between current and next symbol)
Add syncing function
-
Added ability to keep outline in sync with current file position (outline view will scroll to current symbol and have it highlighted). Note this does not work with alphabetical sort.
-
Added setting to turn on/off the syncing feature (default is on)
"outline_sync": true,
Add function to sort alphabetically
- Added ability to sort outline alphabetically by setting or by command
- By command: press
Ctrl + Shift + P
and selectOutline: Toggle Sort
- By setting: add the following line in settings and change the value to
true
:
- By command: press
"outline_alphabetical": true,
Add dark theme
Add dark theme. See README for instructions.
Initial release
This is the initial release for the Outline package.