atom-alignment icon indicating copy to clipboard operation
atom-alignment copied to clipboard

Multi-line and multiple selection alignment package for atom

Results 32 atom-alignment issues
Sort by recently updated
recently updated
newest added

Hi! I've wrote this code: ``` javascript var period = $('#'+ContratoProveedor.form+' select[id=periodo_c]').val(); var periodMapValue = ContratoProveedor.periodsMap[period]; var periodValue = $('#'+ContratoProveedor.form+' input[id=valor_periodo_c]').val(); var totalValue = 0.0; periodValue = ((!/\d+/.test(periodValue))?0:parseFloat(periodValue)); var t...

After activating with keybinding, the history for the file is cleared (can not undo changes, they are all lost).

Just for reference, I'm using atom-alignment version 0.12.1, where the default configuration appears to be: - Align By: `[ '=>', ':=', ':', '=' ]` - Alignment Space Chars: [ '=>',...

I'd like to be able to align on `:` in something like CSON, but not on `::` in the case of C++ namespaces. I've currently disabled aligning on `:` since...

Would love be able to set additional settings in addition to the default. Currently, changing the "align by" settings overrides the defaults. Would that field to keep the default settings,...

[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version**: 1.3.2 **System**: Unknown Windows Version **Thrown From**: [atom-alignment](https://github.com/Freyskeyd/atom-alignment) package, v0.12.1 ### Stack Trace Uncaught Error: Module did not self-register....

[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version**: 1.3.2 **System**: Unknown Windows Version **Thrown From**: [atom-alignment](https://github.com/Freyskeyd/atom-alignment) package, v0.12.1 ### Stack Trace Uncaught Error: Cannot find module '../services/php-proxy.coffee'...

Atom: 1.0.7 atom-alignment: 0.12.1 Strings that contain alignment characters should not be changed by the plugin. Example: ``` js var foo = { bar: '1 :abc', bazzzzzz : '2: def'...

After aligning cursors, there is one history event added per cursor, which is quite annoying. I originally submitted this to atom directly and was told "[atom-alignment] needs to use the...

Is there any utility in using multiple alignments in the same row? example: ![align1](https://cloud.githubusercontent.com/assets/1428103/8626986/38dcb216-271e-11e5-9997-7c271797cc4f.png) turns into: ![align2](https://cloud.githubusercontent.com/assets/1428103/8626987/38dd58ba-271e-11e5-9a74-7ce3cb565d7e.png) What's the purpose in aligning the second symbol? In my opinion, it sometimes...