trevormorse / AlignEquals

Sublime Text 2 Package to align equals.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AlignEquals

This Sublime Text 2 Package provides the ability to align all the equals(=) in the selected text. So it will change your code from this:

$a = 'some value';
$medium_var = 'some other value';
$very_long_variable = 'yet another value';

to

$a                  = 'some value';
$medium_var         = 'some other value';
$very_long_variable = 'yet another value';

Installation

To install clone this repo into your Sublime Packages folder.

$ git clone https://github.com/trevormorse/AlignEquals AlignEquals

Usage

Select the text you would like to have the equals and then press alt+=.

About

Sublime Text 2 Package to align equals.


Languages

Language:Python 100.0%