Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>EZ Command RunnerNew to Visual Studio Code? Get it now.
EZ Command Runner

EZ Command Runner

Sina Gholizadeh

|
37 installs
| (0) | Free
run custom command with single click
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

EZ Command Runner

add your commands in settings.json file like :

{
    //...
    "ez-commands-runner": {
        "commands": {
            "Say Hello": "echo 'Hello'"
        }
    }
}

then it will appear on Command Runner View on the left!

to close termianl after running the command

you can append command with --ez-close={timeout} flag like :

{
    //...
    "ez-commands-runner": {
        "commands": {
            "Say Hello": "echo 'Hello' --ez-close=1000"
        }
    }
}

it will close newly openned terminal after 1 seconds

or

simply add "&& exit" at the end of the command, like:

{
    //...
    "ez-commands-runner": {
        "commands": {
            "Say Hello": "echo 'Hello' && exit"
        }
    }
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft