This extension adds a "Run Script Here" option to the context menu in VS Code, allowing you to quickly run scripts from either the editor or the solution explorer.
Features
Right-click on any script file in the editor or solution explorer to run it
Automatically opens a new terminal in the script's directory
Supports multiple script types:
PowerShell (.ps1)
Batch files (.bat, .cmd)
Python (.py)
JavaScript (.js)
TypeScript (.ts)
Shell scripts (.sh)
Keyboard shortcut: Ctrl+Shift+R (Cmd+Shift+R on Mac)
Installation
Clone this repository
Run npm install to install dependencies
Press F5 to start debugging the extension in a new VS Code window
Usage
Right-click on any supported script file in the editor or solution explorer
Select "Run Script Here" from the context menu
The script will run in a new terminal window
Requirements
VS Code 1.60.0 or higher
Node.js 16.x or higher
Required runtime environments for the scripts you want to run (Python, Node.js, etc.)