Emacs Transpose Functions for VSCodeDescription
This extension add the transpose function of Emacs to VSCOode. UsageTranspose two characters (Transpose Chars) (Ctrl + t )Swaps the two characters around the cursor. If the cursor is at the end of the line or the beginning of the line, it will not do anything. Transpose two words (Transpose Words) (Alt + t )Swaps the two words around the cursor and ignores whitespace. If the cursor is in the middle of a word, it will split the word in two and swap the two parts and keep the rest as it is. If the cursor is at the end of the line or the beginning of the line, it will not do anything. Transpose two lines (Transpose Lines) (Ctrl + Alt + t )It swaps the the line the cursor is on with the non-empty line above it or below it if there is no non-empty line above it. And it will ignore all empty lines. Transpose two lines up (Transpose Lines Up) (Ctrl + t + Up )It swaps the the line the cursor is on with the non-empty line above it. And it will ignore all empty lines. If there is no non-empty line above it, it will not do anything. Transpose two lines down (Transpose Lines Down) (Ctrl + t + Down )It swaps the the line the cursor is on with the non-empty line below it. And it will ignore all empty lines. If there is no non-empty line below it, it will not do anything. TODO
LicenseThis extension is licensed under the MIT License. Do whatever you want with it. |