This is the README "vs-code sed", vscode-sed allows you to edit the current file using a custom command.
You can add custom commands in your settings.json by adding :
"vscode-sed.commands": [
{
"label": "sed",
"description": "Replace Hello By Hi",
"cmd": "sed",
"args": [
"'s/Hello/Hi/'"
]
}
]To run sed just tap ctrl+P and write >sed:execute or by the shortcut ctrl+K P for
linux and cmd+K P for mac.
Then choose the command you wish to execute in the current file from the list.
The first version works only only linux & mac. Windows is not supported (will be added in the future).
Users appreciate release notes as you update your extension.
Initial release of sed