Quick tool to test VS Code commands with arguments programmatically
📝 Description
A lightweight VS Code extension that allows you to quickly test any VS Code command with custom arguments. Perfect for developers who want to experiment with VS Code's extensive command API or test extension commands interactively.
🎬 Demo
🚀 Features
🔍 Browse All Commands: Select from all available VS Code commands via QuickPick
⚙️ Custom Arguments: Input arguments in JSON format
✅ Instant Feedback: See command results immediately
🎯 Simple Interface: One command to rule them all
📦 Installation
Development Installation
Clone the repository:
git clone https://github.com/dealenx/vscode-command-tester.git
cd vscode-command-tester
Install dependencies:
npm install
Compile the extension:
npm run compile
Test in development mode:
Press F5 in VS Code to launch Extension Development Host
Install for regular use:
npm run package
code --install-extension vscode-command-tester-0.0.1.vsix
🚀 Usage
Open Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
Type "Test VS Code Command" and press Enter
Select a command from the list
Enter arguments in JSON format (e.g., [] or {"key": "value"})