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

Json Colors And Navigation

by Monox18 ALL

Add symbol navigation and colorful syntax to JSON files. All Sublime Text built-in color schemes are supported.

Details

Installs

  • Total 2K
  • Win 832
  • Mac 742
  • Linux 250
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 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
Windows 1 2 1 0 2 5 5 2 3 3 1 6 1 0 4 3 3 2 5 6 5 0 4 8 0 5 5 3 4 2 4 4 4 7 4 7 3 3 1 4 2 6 1 3 2 1
Mac 2 1 0 3 7 3 5 3 5 0 2 3 4 0 4 6 1 0 3 3 2 3 4 0 2 3 3 9 2 4 2 0 4 4 4 3 3 1 1 4 3 1 6 3 2 2
Linux 0 1 0 2 2 4 0 1 2 1 0 1 1 0 0 1 1 0 0 0 1 1 0 1 0 0 0 1 0 2 0 0 1 0 1 1 1 0 0 0 0 1 1 0 0 0

Readme

Source
raw.​githubusercontent.​com
Source Info GitHub GitHub release (latest SemVer) GitHub Release Date - Published_At
Activity GitHub last commit GitHub issues GitHub pull requests
Stats GitHub code size in bytes GitHub language count HitCount GitHub watchers GitHub Repo stars
😎 Sublime Text PRs Welcome

Json Colors And Navigation (JCAN)

JCAN add symbols and colorful syntax to JSON files in Sublime Text 3 and 4 (ST). All built-in color themes in ST4 are supported: Breakers, Celeste, Mariana, Monokai and Sixteen. Also support for 3rd party custom themes can be added. See Supporting Custom Color Themes

Screenshot of a JSON file with Mariana Theme Color in Sublime Text 4.

Installation

Pending Package Control approval The best way to install JSON Symbols and Color Syntax is through Package Manager. Accesible via Preferences > Package Control or ctrl+shift+p.

Alternatively, you can download the latest code into your Sublime Text Packages directory, either by cloning the repository or by downloading the GitHub repository of JCAN.

Coloring Syntax support

JCAN supports syntax coloring for the default themes Mariana and Monokai with up to 10 levels of nesting. Keys are colored according to nested level, while values remain with default colors.

Screenshot of a JSON file with Monokai Theme Color in Sublime Text 4.

Rather than creating a new syntax color, JCAN makes use of Sublime Text configuration system. The syntax coloring is done in theme-name.sublime-color-scheme. You can select the theme via Preferences > Select Color Scheme.... You can add changes in you User folder to extend both the Default and JCAN configurations of the current Color Scheme via Preferences > Customize Color Scheme. More information in ST Color Scheme

The inheritance is as follow: 1) Packages/Color Scheme - Default/Mariana.sublime-color-scheme (Default ST) 2) Packages/JSON Symbols and Color Syntax/Mariana.sublime-color-scheme (this repository) 3) Packages/User/Mariana.sublime-color-scheme (your configuration)

Scopes

Scopes are a method to split a script into lexical units. The purpose is to asign a definition to each unit in a script file. To display any unit, put your cursor anywhere in the open file and go to Tools > Developer > Show Scope Name or press ctrl+shift+alt+p. Scopes enable ST to understand the script, parse it, apply color and so on.

Screenshot of a JSON file displaying a scope in Sublime Text 4.

JCAN doesn't add new scopes neither extends the default scopes found in the YAML file Packages/JSON/JSON.sublime-syntax. That is entirely done and maintained by ST. Only the default scopes defined there are used by JCAN. This ensures that 1) JCAN works with .json Syntax by default (without creating a new syntax deinition), and 2) JCAN will remain compatible with future updates.

If interested into extending JSON.sublime-syntax or similar, you can use PackageResourceViewer to explore its contents, extract it and modify it. Learn more about Scopes and Selectors.

Symbol Navigation

It's a tecnique to jump to class and funcion definitios. It's quite common in Javascript and other programming languages but not so much in data exchange formats.

By default, ST doesn't push any kind of JSON symbols Goto > Go to Symbol or ctrl+R. JCAN pushes keys as symbols in .tmPreferences to enable symbol navigation.

Screenshot of a JSON file with open Goto Symbol Dialog in Sublime Text 4.

Also, other plugins that make use of symbols will be ale to render and interact them. Which bring us to the next section: Outline package.

Json outline for better code navigation

I recommend you the Outline package which displays an interactive table of contents. It allows code navigation, function navigation, symbol navigation, whatever you want to call it. A clickable list of idented keys will be shown. Additionally, JCAN adds one space per nested level with the symbolTransformation property to display identation.

Screenshot of a JSON file with the Outline Package in Sublime Text 4.

Inspired by:

  • JSON Key-Value which creates a new syntax definition requiring you to use JSON Key Value syntax.
  • Monokai JSON+ which creates a new Color Scheme requiring you to use Monokai JSON+ color scheme.

On contrary, JCAN merely extends ST current syntax definitions and color schemes to remain compatible with other plugins. Thus, no new syntax neither new color themes are installed.

Supporting Custom Color Themes

You can eaaasily extend a 3rd party syntax to include JCAN along with your custom color theme. As long as they have extended (not replaced) ST4 Json syntax do this: 1) Make a copy of Monokai.sublime-color-scheme. Paste it in the JCAN package folder or your Packages/User folder. 2) Change its name to the name of the custom color theme you are using. The name must match for ST to detect it and apply the changes. I.e if you installed Monokai++ custom theme then the new file name would be Monokai++.sublime-color-scheme 3) Edit the "foreground": "var(purple)" properties to match those used by your theme. To find the variables used by your current them go to Preferences > Customize Color Theme. Use any of the values in the key "variables". In ST, file modifications are live. Each time you save, you will instantly see changes in your open ST json files. 4) Boom done. 5) Optionally, you can pull request that file to this repo and I will merge it :)

Just a simple everyday quality of life package :)

…and an excuse to start using git ☕

Anurag's GitHub stats