ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Transpose​Character

Swaps two characters, lines, words, or reverses a selection. Depending on cursor location and selection(s).

Details

  • 3.0.1
  • github.​com
  • github.​com
  • 10 years ago
  • 52 minutes ago
  • 12 years ago

Installs

  • Total 2K
  • Win 964
  • Mac 639
  • Linux 416
Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1
Mac 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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

  1. Using Package Control, install “TransposeCharacter”

Or:

  1. 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
  2. clone this repo

  3. 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›