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
Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28
Windows 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 1 0 0 1 0 2 0 1 0 0 0 1 0 0 2 1 0
Mac 1 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 1 0
Linux 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 1 0 0 0 0 0 0 0 1 0 0 1

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.