Skip to content

Latest commit

 

History

History
68 lines (50 loc) · 1.67 KB

README.md

File metadata and controls

68 lines (50 loc) · 1.67 KB

##"Align It!" Extension for Brackets

Brackets on GitHub

This Brackets extension allows you to make some beautiful code alignments of object literals and variable assignments.

Installation

How To Use

  1. Make selection of code range you want to align in the editor
  2. Press "Ctrl+" hotkey or go to "Edit->Align It" menu item
  3. The magic has happend! ^__^

Usage examples

#####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"],
};