An extension to overwrite the wrapping symbols of selected text. Has your selected text got double quotes but you need backticks? Overwrap can help.
Allows you to highlight some text and overwrite the wrapping symbols.
For example, you could highlight the following text which uses double quotes:
"Hello from the ${otherside}";
And toggle it to use backticks
`Hello from the ${otherside}`;
The extension provides commands to overwrite using the following wrapping symbols:
- double quotes
"stuff"
- single quotes
(stuff)
- square brackets
[stuff]
- curly braces
{stuff}
- parens
`stuff`
This extension contributes the following settings:
overwrap.trimWhitespace
: Trim whitespace from the selected text before applying the changes.
Initial release of the extension
Added an icon