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

Breadcrumbs

by qbolec ALL

A Sublime 2 Plugin which adds breadcrumbs to the status bar based on scopes the current line belongs to

Details

Installs

  • Total 2K
  • Win 1K
  • Mac 888
  • Linux 494
May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 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
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1
Mac 0 0 0 0 1 1 2 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 3 0 1 0 0 0 1 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Breadcrumbs

A plugin for Sublime Text 2 and 3, which shows the breadcrumbs to your current caret position based on indentation. Breadcrumbs can be displayed in the statusbar, a popup (via Show Breadcrumbs) or in between the lines of your code (via Show Breadcrumbs Inline).

For example if your code looks like this:

foo(){
  bar:
    if (whatever){
      cox()
    } else {
      blah ->
        zoo
    }
}

With the caret at the line with zoo, the breadbrumbs would be: foo(){, bar:, } else {, and blah ->. The “crumbs” can be fine-tuned using a regex.

This approach is language agnostic, can be quite usefull for code that spans many lines and when tracking indentation and context is difficult. It can also help you get your bearings after jumping into a large file (e.g. via search or goto).

Installation

We recommend using Package Control:

  1. Press CTRL+SHIFT+P (on Mac: CMD+SHIFT+P)
  2. Select “Package Control: Install Package”
  3. Search for “Breadcrumbs”
  4. Hit Enter

Settings

The settings include values to limit the length of breadcrumbs and you can create your own regular expressions so it includes only what you need. Settings can be further customized per syntax.

Open Preferences > Package Settings > Breadcrumbs > Settings to view all options.

Example key bindings

This package doesn't provide key bindings for its commands, allowing you to customize them as you see fit. Here are some examples:

{ "keys": ["super+ctrl+b"], "command": "breadcrumbs_popup" },
{ "keys": ["super+ctrl+alt+b"], "command": "breadcrumbs_phantom" }