Text Transformer banner

Text Transformer

1 devlog
2h 9m 10s

Transforms the text that is highlighted by the cursor in the vs code editor.
Current supported case : Title Case, UPPER CASE, lower case.
Future updates: Will add snake_case, camelCase.
Keyboard Shortcuts:

  1. CTRL + SHIFT + U -> UPPER CASE.
    2…

Transforms the text that is highlighted by the cursor in the vs code editor.
Current supported case : Title Case, UPPER CASE, lower case.
Future updates: Will add snake_case, camelCase.
Keyboard Shortcuts:

  1. CTRL + SHIFT + U -> UPPER CASE.
  2. CTRL + SHIFT + L -> lower case.
  3. CTRL + SHIFT + T -> Title Case.
This project uses AI

Used AI to setup the project.

Demo Repository

Loading README...

vikram26

Shipped this project!

I have made a text transformer for vsCode. Download it and transform text highlighted by your cursor to different one. Currently in Beta So don’t criticize heavily.

vikram26

In this devlog i have made my first vs code extension and published it to the vs code market place.
I have learnt how to setup a extension for development, export it as .VSIX file and publish it to the market place.
I have made three cases as of now.

  1. Make a lower case function -> turns all the selected text to lower case.
  2. Make a upper case function -> turns all the selected text to upper case.
  3. Make a title case function -> takes separator β€œ β€œ,”-”,”_” with out these separator the function will not differentiate the word that is highlighted by the cursor. In future without separator i will make it work by a complex algorithm that i came to know about which compares split text to a dictionary.
    To turn selected text to UPPER CASE -> use this shortcut -> CTRL + SHIFT + U.
    To turn selected text to LOWER CASE -> use this shortcut -> CTRL + SHIFT + L.
    To turn selected text to TITLE CASE -> use this shortcut -> CTRL + SHIFT + T.
Attachment
0