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

Better Java​Script

by int3h ALL

Fixes to Sublime Text's JavaScript symbol list

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Sublime Better Javascript

This package is an improved version of Sublime Text's JavaScript package, focused mainly on improving symbol navigation.

The default JavaScript language definition in Sublime Text has quirky symbol identification, and fills your symbols list with noise like anonymous functions, object instantiation, and even calls to console.log().

Useless Symbol List

This project fixes Sublime so only named function definitions and function prototype attributes show up in the symbol list. It also fixes how these symbols are displayed in the symbol list, so that only the function names are shown.

Improved Symbol List

This package has been tested on Sublime Text 2 and 3.

Installing

Install via package control (search for 'Better JavaScript').

Alternatively, cd to you Sublime packages directory, then:

git clone git@github.com:int3h/sublime-better-javascript.git 'Sublime Better JavaScript'

Refreshing the symbols of existing files

In some cases, especially with Sublime Text 3, the symbols list of files that have been previously opened may not refresh with the improved symbols.

The most reliable way I've found to fix this is to close all open JavaScript files and quit Sublime (it's important that all JS files are closed when Sublime exits.) Then delete the Index and Cache subdirectories in your Sublime user data directory (the parent of the Packages directory.) In Mac OS X, I've also had to delete ~/Library/Caches/com.sublimetext.3 (or com.sublimetext.2).

Uninstalling

Before uninstalling Better JavaScript, be sure close all open JavaScript/JSON files, and remove “JavaScript” from the “ignored_packages” list in your Sublime user settings. You can now safely uninstall the Better JavaScript package.

It's normal to see a few errors from Sublime about not being able to find syntax files. Just exit Sublime and re-open it, and everything should be fixed.

Details

The default JavaScript.tmLanguage makes some… odd decisions on what namespace to put certain tokens in. Specifically, it puts a lot of tokens in the entity.name.* namespaces that probably shouldn't be.

There is a file, Symbol List Banned.tmPreferences, in the JavaScript package which ostensibly is supposed to filter out some specific sub-namespaces from the symbols list, but it doesn't really work. I modified Symbol List Banned.tmPreferences to specifically match object instantiation and console.log calls, and set them to not show up in the symbol list.

I also modified Symbol List Function.tmPreferences to do additional processing of function names with regexes, to strip out extraneous characters (like “function” and “= function()”) before showing them in the symbol list. An additional file, Symbol List Prototype.tmPreferences, was added to include function prototype attributes in the symbol list.