Skip to content

Releases: warmdev/SublimeOutline

Add option to change outline pane width

27 Feb 21:31
Compare
Choose a tag to compare

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

18 Nov 00:46
Compare
Choose a tag to compare

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

16 Nov 01:37
Compare
Choose a tag to compare
  • 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 line
    • symbol: highlight the current symbol (same as previous implementation)
    • block: highlight the entire symbol block (i.e. between current and next symbol)

Add syncing function

15 Nov 00:40
Compare
Choose a tag to compare
  • 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

17 Jun 19:33
Compare
Choose a tag to compare
  • Added ability to sort outline alphabetically by setting or by command
    • By command: press Ctrl + Shift + P and select Outline: Toggle Sort
    • By setting: add the following line in settings and change the value to true:
"outline_alphabetical": true,

Add dark theme

22 Oct 20:13
Compare
Choose a tag to compare

Add dark theme. See README for instructions.

Initial release

10 Sep 20:42
Compare
Choose a tag to compare

This is the initial release for the Outline package.