This extension allows to quickly transform the charactors or selected texts. If there is no selection, the char after cursor will be transformed, and the cursor will advance itself after the trasnformation to enable the seamless continuous trasnformation process which is the main purpose motivating me to create this extension, and my response to the issue I raised for VS Code. This extension supports multiple cursors and multiple selections.
Simple Case Commands
: List all Simple Case commands.Simple Case Lower
: Transform to lowercase. Shortcut: alt+uSimple Case Upper
: Transform to uppercase. Shortcut: shift+alt+uSimple Case Toggle
: Toggle between lowercase and uppercase. Shortcut: alt+t
There are two ways to use the functionality provided by this extension.
-
One way is through VS Code's Command Palette by enter Ctrl+shift+P on Windows and Linux, or CMD+shift+P on OSX. Then type
Simple Case
, and select one of the displayed Simple Case commands which you want to execute. -
The another way is to directly use one of the keyboard shortcuts listed above.