##"Align It!" Extension for Brackets
This Brackets extension allows you to make some beautiful code alignments of object literals and variable assignments.
- Select File > Extension Manager
- Click Install from URL
- Enter the url of this repo:
- https://github.com/ggarek/brackets-extension-alignit
- Click Install
- Make selection of code range you want to align in the editor
- Press "Ctrl+" hotkey or go to "Edit->Align It" menu item
- The magic has happend! ^__^
#####Example #1: This code snippet:
var AppInit = brackets.getModule("utils/AppInit"),
CommandManager = brackets.getModule("command/CommandManager"),
EditorManager = brackets.getModule("editor/EditorManager"),
Menus = brackets.getModule("command/Menus");
will be transformed to:
var AppInit = brackets.getModule("utils/AppInit"),
CommandManager = brackets.getModule("command/CommandManager"),
EditorManager = brackets.getModule("editor/EditorManager"),
Menus = brackets.getModule("command/Menus");
#####Example #3: This code snippet:
var a = "hello",
abc = "forget it",
isCanceled = false,
emptyObj = {};
will be transformed to:
var a = "hello",
abc = "forget it",
isCanceled = false,
emptyObj = {};
##Soon #####Example #2: This code snippet:
var a = {
id : 1,
name : "skull",
tags : [ "cool", "dark" , "mysterious"],
};
will be transformed to:
var a = {
id : 1,
name : "skull",
tags : [ "cool", "dark" , "mysterious"],
};