note to self: https://marketplace.visualstudio.com/manage/publishers/anamoyee?auth_redirect=True
Usage example:
settings.json
{
"postfix.rules": {
/* Use * as language name to apply to all languages
"*": [
] */
"python": [
{
"lineRegex": "^(?<indent>[ \\t]*)(?<group>.*)!print",
"replacement": "$<indent>print($<group>)",
},
{
"lineRegex": "^(?<indent>[ \\t]*)(?<group>.*)!len",
"replacement": "$<indent>len($<group>)",
},
],
/* more languages here, use vscode langId name; "javascript": [ ... ] */
},
}