This is a very simple VSCode extension which converts a given set of (regular expression) patterns into a user-specified list of symbols.
Install this extension by searching 'Symbol Complete' in VSCode extensions.
Open up a new file and type something like |-->|
and it should convert to ⟶
automatically.
{
"symbol-complete.replacements": {
"\\|lambda\\|": "λ",
"\\.\\.\\.": "..."
}
}
Replacements for all Greek symbols are added.
As of 0.0.9 support for lots of set theory operators are added as well. See package.json
for the full list of default replacements.
This extension also works with multiple selections.
Minor undo problems
Support for multiple selections.
Added more character conversions.
Minor undo issue fixed
Minor revisions
Initial release