TransposeCharacter
Swaps two characters, lines, words, or reverses a selection. Depending on cursor location and selection(s).
Details
Installs
- Total 2K
- Win 972
- Mac 648
- Linux 422
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
TransposeCharacter
Swaps two characters, lines, words, reverses a selection, or swaps two selections, depending on cursor location and selection(s).
Installation
- Using Package Control, install “TransposeCharacter”
Or:
Open the Sublime Text Packages folder
- OS X: ~/Library/Application Support/Sublime Text 3/Packages/
- Windows: %APPDATA%/Sublime Text 3/Packages/
- Linux: ~/.Sublime Text 3/Packages/ or ~/.config/sublime-text-3/Packages
clone this repo
Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)
Commands
transpose_character
: Swaps two characters, reverses a selection, swaps two lines, or rotates multiple selections.
The behavior of transpose_character
changes depending on the location of the cursor and the selection.
If the cursor (|
) is in between two letters (anything other than a newline), it will swap them:
te|h => the|
At the beginning or end of a line, the behavior is to swap the lines:
1. klmno| 1. abcde 1. abcde
2. abcde => 2. klmno| => 2. fghij
3. fghij 3. fghij 3. klmno|
1. fghij 1. fghij 1.|abcde
2. klmno => 2.|abcde => 2. fghij
3.|abcde 3. klmno 3. klmno
If there is one selection, the selection cursor will be reversed in place. This means you can move the cursor to the beginning or end of the selection, which is very useful for extending line selections.
If there are multiple selections, the it swaps each pair of regions.
‹abc›-DEF-‹123›-‹456› => DEF-‹abc›-‹456›-‹123› => ‹abc›-DEF-‹123›-‹456›