The UncapitalizeClipboard command uncapitalizes the clipboard content.
A word is
capitalized
if
- its first letter is uppercase
- and the remaining letters are lowercase.
As you can see in the following table,
uncapitalizing has no effect on a word if it is not capitalized.
Word |
Uncapitalized Word |
Effect |
Hello |
hello |
Uncapitalized |
hello |
hello |
Unchanged |
HELLO |
HELLO |
Unchanged |
Example
In the following expansion:
{Ctrl Shift Left}
{CopySelection}
{UncapitalizeClipboard}
{Paste}
- {Ctrl Shift Left} selects the previous word,
- {CopySelection} copies the selection to the clipboard,
- {UncapitalizeClipboard} uncapitalizes the clipboard content,
-
and finally {Paste} pastes the clipboard content,
thereby overwriting the selected word with its uncapitalized version.