tylerFowler / atom-alinement

Atom package that aligns variable assignments in a column on the equals character

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alinement

For those of you who like even assignment columns.

Turns this:

const R = require('ramda');
const fs = require('fs');
const path = require('path');
const express = require('express');

Into this:

const R       = require('ramda');
const fs      = require('fs');
const path    = require('path');
const express = require('express');

Usage

Key binding: ctrl-alt-l

Select text that is to be aligned and use the context menu option of 'Align Selection' or use the key binding.

About

Atom package that aligns variable assignments in a column on the equals character

License:MIT License


Languages

Language:CoffeeScript 100.0%