sublime_alignment
sublime_alignment copied to clipboard
Easy alignment of multiple selections and multi-line selections
I'm setting up a new installation and upgraded to Sublime Text 4. When searching in Package Control, Alignment does not appear in the list of available packages. Is Alignment supported...
```json "alignment_chars": ["=", "AS" ], "alignment_space_chars": ["=", "AS" ] ``` Next text: ``` , p.Tot_Amt AS LastAmount , PriorMonth.Total AS PriorMonthPayment , CurrMonth.Total AS CurrMonthPayment ``` Is aligned as: ```...
This seems to solve the main problem I was having with this package for a while, being able to select all my vars and use the alignment to auto-align. The...
Now that `packagecontrol.io` pulls documentation from the readme, the page at [`https://packagecontrol.io/packages/Alignment`](https://packagecontrol.io/packages/Alignment) says: > Please see http://wbond.net/sublime_packages/alignment for [...] > screenshots and documentation. And `http://wbond.net/sublime_packages/alignment` redirects back to `https://packagecontrol.io/packages/Alignment` So...
Not sure if this is still supported? But installation instructions are missing.... (e.g. key bindings?) The main page just shows MIT license with a link to wbond.com for installation, Unfortunately...
Hi, thank you for awesome plugin. Is there a way to make sublime_alignment process such assignments ``` express = exports.express = require("express"); session = exports.session = require("express-session"); cookieParser = exports.cookieParser...
Just something I ran into when trying this out. This pull request longer than actual fix.
Here's what happens: ``` var h = thing, apple = thing2; ``` instead of: ``` var h = thing, apple = thing2; ``` Would be sweet if it could account...
... it was always getting lost for me
Hi, I have installed a sumlime plugin called DocBlockr for better function comments, when I finished writing a function it will looks like this: ```php /** * Get order list...