This is a Sublime Text 2 plugin and build system allowing you to format your HTML, CSS, and JavaScript code. It uses a set of nice beautifier libs made by Einar Lielmanis and Noah Kantrowitz. The formatters are written in JavaScript, so you'll need something (node.js) to interpret JavaScript code outside the browser.
This will work with both HTML, CSS, and JavaScript files.
First of all, be sure you have node.js installed in order to run the beautifier. After you've installed node.js, you will need to setup this plugin.
Each OS has a different Packages
folder required by Sublime Text 2. Open it via Preferences -> Browse Packages, and copy this repository contents to the Sublime-Beautify
folder there.
The shorter way of doing this is:
git clone git://github.com/krishantaylor/Sublime-Beautify.git ~/.config/sublime-text-2/Packages/Sublime-Beautify
git clone git://github.com/krishantaylor/Sublime-Beautify.git ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/Sublime-Beautify
git clone git://github.com/krishantaylor/Sublime-Beautify.git %APPDATA%/Sublime\ Text\ 2/Packages/Sublime-Beautify
Tools -> Command Palette (Cmd+Shift+P
or Ctrl+Shift+P
) and type beautify
.
-- or --
Open a HTML, CSS, or JavaScript file, pop out the console in Sublime Text 2 from View -> Show Console, and type view.run_command("beautify")
.
Writing commands in the console is ugly. Set up your own key combo for this, by going to Preferences -> Key Bindings - Default, and adding a command in that huge array: { "keys": ["super+shift+h"], "command": "beautify" },
. You can use any other command you want, thought most of them are already taken.
If you get an error sh: node: command not found
or similar, you don't have node
in the right path. Try setting the absolute path to node in Beautify.py
.
This means from:
cmd=["node",...]
change to
cmd=["absolute/path/to/node",...]
The Beautify.py
script has some predefined settings regarding the indentation size, indentation character, maximum chars per line and brace styling. Customize these settings by modifying the script with your desired values (see the JSBeautifier options).
Have fun!