Skip to content

ggarek/brackets-extension-alignit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

AlignIt Extension for brackets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published