This Visual Studio Code extension will allow you to manage selected text.
The aim of this extension is to increase productivity by unifying set of actions over an text selection.
Select a text of a file and open the editor commands (ctrl+shift+P / cmd+shift+P) and search for one of the next commands:
copy the selection in a new file.
Move the selection in a new file, results in having the original text deleated.
Isolate the selection, results in having the content of the document replaced with just the selected text.
Search for the selection on google.
It will replace the selected text with a URL encoded version of it.
It will replace the selected text with a Base64 encoded version of it.
It will replace the selected text with a URL decoded version of it.
It will replace the selected text with a Base64 decoded version of it.
Turns the selected text to lowercase.
Turns the selected text to uppercase.
The selected camel case text will be turned to snake case (eg. callAsync -> call_async).
The selected snake case text will be turned to camel case (eg. call_async -> callAsync).
The selected kebab case text will be turned to camel case (eg. call-async -> callAsync).
The selected camel case text will be turned to kebab case (eg. callAsync -> call-async).
The selected kebab case text will be turned to snake case (eg. call-sync -> call_async).
The selected snake case text will be turned to kebab case (eg. call_sync -> call-async).
Pops an alert, in the bottom right corner, with the information of the length of the selected text.
Pops an alert, in the bottom right corner, with the information of the number of non ascii characters in the selected text.
It will reverse the selection, line by line.
Puts the selection in a log call, just after the line of the selection. The log will include an log ID. **Currently only works for JavaScript.
Replaces the selection with lorem ipsum, if nothing is selected will replace the whole line where the cursor is placed.