This is an simple plugin to extend text manipulation in Micro.
By default no keybindings exist, but you can easily modify that
in your bindings.json
file:
{
"Ctrl-L": "command:lower"
}
You can also execute a command which will do the same thing as the binding:
> lower
If you have a selection, the plugin will change all of the selection.
The following commands currently exists:
camel
: camelCasepascal
: PascalCasekebab
: kebab-casesnake
: snake_casescreamingSnake
: SCREAMING_SNAKE_CASEupper
: UPPERCASElower
: lowercasereverse
: Reversesbase64enc
: Base64 encodesbase64dec
: Base64 decodesrot13
: ROT-13incNum
: Increase number by onedecNum
: Decrease number by onecapital
: Capitalize First Lettertitle
: Title Casebrace
: Adds brackets around selectioncurly
: Curly brackets ({ }
)square
: Square brackets ([ ]
)angle
: Angle brackets (< >
)dquote
: Double quotes (" "
)squote
: Single quotes (' '
)backtick
: Backticks (` `
)
Please use the issue tracker if you have any issues or feature requests!