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

Colorcoder

by vprimachenko ALL

Semantic highlight for Sublime Text

Details

  • 2014.12.23.19.17.54
    2014.11.13.15.03.21
  • github.​com
  • github.​com
  • 9 years ago
  • 1 hour ago
  • 10 years ago

Installs

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

Readme

Source
raw.​githubusercontent.​com

Colorcoder

This plugin for Sublime Text will highlight every variable in its own, consistent color — feature known as semantic highlighting, variable-name highlighting, contextual highlighting — you name it.

Notice how all instances of m_nValue share the same color

Motivation

  • “Coding in color” by Evan Brooks
  • actually thought about something to improve the current highlighting system and accent the data flow
  • help dysgraphic/dyslexic coder

it is important to note i use a crc8 hash of the variable name to give similar named variables distinct colors to improve typo recognition

Installation

Download the zip-ball and unpack to sublime\data\packages or via packageControl. Please make sure to name the resulting folder Colorcoder not Sublime-Colorcoder.

To properly work Colorcoder needs an appropriately modified color scheme. On the first run plugin will try its best to automatically modify your current scheme. :grey_exclamation: the plugin will not actually modify the scheme but create a modified copy in its own directory and apply it. You can use ToolsPackagesColorcoderTweak Colorcode on current color scheme (or CTRLSHIFTP it) to modify the colors a bit (you can change the lightness and saturation). Colorcoder also needs a “good” language definition, which it does not activate automatically but leaves you the choice to do so, read below for more.

Supported Languages

As the few language definitions provided by Sublime are insufficient for optimal Colorcoder results I bundle tailored definitions. So far it's

  • C++
  • Python
  • Lua
  • Go
  • Ruby
  • CoffeeScript (via by @aponxi)

for JavaScript please use the JavaScript Next package.

You can set them up as default via language menuOpen all with current extension asColorcoder… (Colorcoded) or copy them to appropriate folder (erg. Packages/Colorcoder/Python (Colorcoded).tmLanguage to Packages/Python/Python.tmLanguage.

You can also add more scopes for the plugin to colorize via the scopes setting. Colorcoder comes with a handy command colorcoder_inspect_scope which will print the scope of the token under text cursor to the console. You can bind it to a key (e.g. CTRLF12) by adding following to PreferencesKey Bindings – User

{ "keys": ["ctrl+f12"], "command": "colorcoder_inspect_scope"},

Sometimes things we are interested in don't have distinct scope e.g. the variables in Javascript are only source.js. You would need to modify the .tmLanguage.

  • First you need to obtain it - it is inside the same names .sublime-package file, which is a zip-archive
  • now locate the first instance of

    <key>patterns</key>
    <array>
    

it should be somewhere within the first 50–100 lines - use code folding to find where according </array> is - place following right before it

<dict>
        <key>comment</key>
        <string>colorize everything</string>
        <key>match</key>
        <string>\b\w+\b</string>
        <key>name</key>
        <string>colorize</string>
    </dict>

or modify the bundled .tmLanguage files, you probably would only need to replace the keywords

Options

You can turn the highlighting off per view via ViewColorcode this view. Colorcoder also might slow down the editor when highlighting huge files, so it will turn itself off once the file has exceeded the max_size (the check happens when you save the file or reactivate the view). You can force it to highlight the file nevertheless via said menu item (which will read Colorcoding may hurt performance, File is large now) Default (faster) highlighting method makes the undo work letterwise, you can change this by setting use_fast_highlighting_but_undo_typing_letterwise to false. Colorcoder will then use alternative engine, which does not interfer with undo, but work somewhat slower on large files. You might want to tune max_size lower then. Colorcoder allows you to specify white- and blacklist for file-types to highlight: the settings are enabled_for and disabled_for. If enabled_for is present in the config only those file-types will be highlighted, disabled_for won't be highlighted even if present in whitelist. Finally :exclamation: if you use some plugins which change the color scheme based on time, or filename, or modify the schemes you better turn the auto_apply_on_scheme_change off, or the plugin conflict may result in an endless loop which will lock the editor. You can always change the settings even when sublime is not running.

Contact

You can reach me via email: vprimachenko@ya.ru, twitter: @vprimachenko or visit the official irc channel freenode.net#colorcoder (webchat). If Colorcoder was usefull to you i greatly appreciate a donation via Bitcoin 1DzZ1thGTHubRzoxEeDCJnJZwgFpna6jQk.