Aligns all of the cursors/selections into a vertical line by inserting spaces. A very simple, quick, easy, and agnostic way to align code/text however you want.
This repo is modifed upon the original repo by yo1dog here: https://github.com/yo1dog/vscode-cursor-align
Command | Description |
---|---|
huntertran.cursor-align.alignCursors |
Aligns all cursors/selections. |
+---------+---------+-------------------------------------------------------------+
| Setting | Value | Description |
+=========+=========+=============================================================+
| align-cursor.alignCharacter |
+---------+---------+-------------------------------------------------------------+
| | default | Use VSCode default tab character and tab size |
| +---------+-------------------------------------------------------------+
| | tab | Use tab character with VSCode tab size |
| +---------+-------------------------------------------------------------+
| | space | Use space character with VSCode tab size (default 4 spaces) |
+---------+---------+-------------------------------------------------------------+
Note: A "cursor" is actually a selection with a length of 0.
Inserts spaces to the left of selections until all the selection starts are aligned with the right-most selection start. Adds spaces to the end of selections until all selections are the same length as the longest selection (all section ends are aligned with the right most selection end).
Multiline selections don't make much sense with this tool, but here's how they are handled: A multiline selection is split into two 0-length selections with one at the starting point and one at the end point of the multiline selection.
Likewise, multiple selections per line don't make much sense, but here's how they are handled: Multiple selections per line are combined into a single selection that starts at the left-most selection's starting point and ends at the right-most selection's end point.
If instead of aligning cursors a character is inserted or nothing happens, the default alt+a
keybinding may be being caught higher up (ex: at the OS level). Try changing the keybinding.
If you continue to have problems, please open a new issue here.
See Issues.
See CHANGELOG.md