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

Status​Message

by shagabutdinov ALL

Custom status bar for sublime

Details

Installs

  • Total 7K
  • Win 3K
  • Mac 2K
  • Linux 2K
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 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
Windows 0 0 3 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 2 0 1 0 0 1 0 0
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime StatusMessage plugin

Glorious plugin that replaces default (ugly) sublime status bar and makes it a bit nicer (with icons). Works great together with sublime-shell-status plugin.

Demo

Notebook screenshot

This is sublime running on my laptop. It's always employs as much space as possible that is why there is time (ω) and battery charge (do not displayed on screenshot) are showed in status bar panel.

WARNING

It disable some default status messages (window-status messages) and sublimes default status messages. In order to see all status messages you should use keyboard hotkey.

Some icons used in status bar (e.g. battery “🔋”, search “🔎” or star “✱”) will result to strange text padding: lowest pixel row of text (including underscores “_”) will not be visible. It is really annoying bug and if you have an workaround please tell me it.

Installation

This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.

If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.

Features

Replaces default status bar with a bit nicer one. Provides API for other plugins to make nice status bar output.

Commands

Description Keyboard shortcut Command palette
Show scope name ctrl+u, ctrl+\ StatusMessage: Show scope name
Toggle default status ctrl+u, ctrl+y StatusMessage: Toggle default status

Dependencies

None

API

Methods are located under “StatusMessage.status_message” (“from StatusMessage import status_message”):

set(view, key, message, timeout = None)

Set status message to view.

Arguments:

  • view - view to set message

  • key - unique id of message; message could be erased or resetted by this key

  • message - message to be setted

  • timeout - number of milliseconds after which message will be erased; None - never erase

get(view, key)

Get status message from view.

Arguments:

  • view - view to set message

  • key - unique id of message

erase(view, key)

Erase status message from view.

Arguments:

  • view - view to set message

  • key - unique id of message

get_all(view)

Get all statuses from view that were setted through this plugin. Returns dict (key: message). Modifying this dict and issuing “refresh” command will result modifying status bar messages.

refresh(view)

Refresh view status bar.