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

Inline​Outline

by kaste ST4

Sublime Text Outline // Symbol List plugin

Details

Installs

  • Total 156
  • Win 75
  • Mac 48
  • Linux 33
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
Windows 0 0 1 2 0 0 0 1 0 0 0 0 0 0 2 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
Linux 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0

Readme

Source
raw.​githubusercontent.​com

Hi 👋🏾

This is a plugin for Sublime Text. It is a temporary Outline-mode.

Normal Mode InlineOutline Mode

At the same time, it is also a complete replacement but different approach to Goto Symbol. For example, you can fuzzy-search:

https://github.com/kaste/InlineOutline/assets/8558/42a8a375-2bae-4385-b0df-8580d6c83f69

Or walk using the arrow keys (or , and .):

https://github.com/kaste/InlineOutline/assets/8558/d6eca69b-c9b9-46b3-9b66-e61dd6303b47

As usual, <enter> or double-clicking with the mouse will go to the selected symbol and <esc> will reset the cursor and viewport.

Key binding

By default, the plugin binds primary+shift+o (primary is ctrl), o as in outline. You can change that in the settings (Preferences: InlineOutline Settings). That's also where you can disable all key bindings; just read the instructions over there.

The main command to enter the outline mode accepts an initial search term. For example:

{
    "keys": ["primary+shift+o"],
    "command": "enter_outline_mode",
    "args": { "enter_search": "class " }
}

would let you see all defined classes in a Python file. If you find that useful, either as a key binding or as a command for the Command Palette or context menu, you need to add that manually in the right places inside your User package – as usual.