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

Highlighter

by bluegray ALL

Sublime Text plugin to highlight any sequence of characters. Highlights mixed tabs and spaces, some unicode characters and trailing space by default.

Labels formatting

Details

Installs

  • Total 79K
  • Win 54K
  • Mac 14K
  • Linux 11K
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7
Windows 1 1 0 8 4 3 0 0 0 3 6 0 2 6 3 4 4 0 4 2 4 2 4 4 4 1 2 3 7 10 5 0 0 2 8 4 3 5 6 1 1 3 5 6 9 2
Mac 0 1 0 2 1 0 1 0 0 1 0 0 2 0 3 0 1 0 1 0 2 2 3 2 0 0 1 2 3 0 0 0 0 3 2 1 1 1 1 0 1 1 2 0 1 0
Linux 0 0 1 1 1 0 0 0 0 1 0 1 0 2 1 0 4 1 2 1 0 1 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 2 0 1 1 4 0 1 1 1

Readme

Source
raw.​githubusercontent.​com

Highlighter

No Maintenance Intended

Archived since I don't use Sublime Text anymore.

A plugin for Sublime Text (ST2 and ST3) to highlight mixed tabs and spaces, some unicode characters and trailing space.

Additional highlighted characters

These characters are highlighted by default:

  • U+2026 Horizontal ellipsis
  • U+2018 Left single quotation mark
  • U+2019 Right single quotation mark
  • U+201c Left double quotation mark
  • U+201d Right double quotation mark
  • U+2013 En dash
  • U+2014 Em dash
  • U+00a0 Non-breaking space
  • U+3000 Ideographic spaces

Key bindings

Ctrl+Alt+Shift+h : Toggle highlighting on/off.

Menu commands

You can toggle highlighting in the View menu. The setting is per view, and not saved to disk. This can be changed in the settings, see below.

Configuration

You can override the default settings by creating a file in Packages/User/highlighter.sublime-settings: Check the default highlighter.sublime-settings file for available settings.

Syntax ignore

You can add a list of syntaxes to ignore with the following setting:

{
  "highlighter_syntax_ignore": ["Python", "PHP"]
}

Save toggled state

To persist the toggled state to disk, set the following to true:

{
  "highlighter_save_settings_on_change": true
}

Custom regex

You can customise the regex to highlight:

highlighter_regex <- Matching characters highlighted with fill and outline
highlighter_regex_cool <- Matching characters highlighted with stippled underline

{
  "highlighter_regex": "(\t+ +(?![*]))|( +\t+)|([\t ]+$)",
  "highlighter_regex_cool": "[\u2026\u2018\u2019\u201c\u201d\u2013\u2014\u00a0]"
}