Transform your VS Code workflow with customizable command buttons
Before: Plain VS Code | After: Quick Command Buttons |
---|---|
![]() |
![]() |
Stop wasting time navigating through menus. Get instant access to your most-used commands.
Quick Command Buttons transforms your VS Code experience by adding smart, customizable buttons to your status bar. Execute terminal commands, access VS Code functions, and organize complex workflows with intelligent grouping and nested commands.
Execute any command instantly from your status bar - no more hunting through menus
- ⚡ Instant Access: Click any button to run terminal commands or VS Code functions
- 🎨 Color-Coded: Distinguish different command types with custom colors
- 📱 Smart Terminals: Each command gets its own named terminal session
- ⌨️ Multi-Language Keyboard Shortcuts: Use shortcuts in your native keyboard layout - Korean
ㅅ
automatically maps to Englisht
, Japaneseあ
toa
, etc. Supports 15 languages including Korean, Japanese, Chinese, Hindi, Russian, Arabic, and more
Organize related commands with unlimited nesting - perfect for complex workflows
- 📁 Smart Groups: Organize related commands to save status bar space
- 🔄 Infinite Nesting: Create hierarchical structures with unlimited depth
- ⚡ Quick Shortcuts: Use single-key shortcuts for lightning-fast access
- 📊 Tree View Panel: Visual overview of all commands in sidebar
- ⌨️ Command Palette: Unified interface with
Ctrl+Shift+;
- 🎯 Status Bar: Direct access right in your workspace
- 🎨 Visual Editor: React-based configuration interface
- 🔄 Drag & Drop: Reorder commands with mouse
- ⚡ Real-time Preview: See changes immediately
- 💾 Smart Saving: Choose workspace or global settings
- 🎯 Configuration Scope: Team collaboration or personal use
- 🔨 Build Automation -
npm test
,yarn build
, deployment scripts - 🌿 Git Workflows - Status checks, commits, branch management
- 🐳 Docker Operations - Container management, compose commands
- 📦 Package Management - Install dependencies, update packages
- 🛠️ Development Tools - Linting, formatting, custom scripts
- Install the extension from VS Code Marketplace
- Enjoy the default configuration with Test, Terminal, and Git commands
- Customize via the visual Configuration UI or settings.json
{
"quickCommandButtons.buttons": [
{
"name": "$(testing-passed-icon) Test",
"command": "npm test",
"color": "#4CAF50",
"shortcut": "t"
},
{
"name": "$(git-branch) Git",
"color": "#FF9800",
"group": [
{
"name": "$(arrow-down) Pull",
"command": "git pull",
"shortcut": "l"
},
{
"name": "$(search) Check Status",
"group": [
{ "name": "Status", "command": "git status" },
{ "name": "Diff", "command": "git diff" },
{ "name": "Log", "command": "git log --oneline -5" }
]
}
]
}
]
}
Option | Type | Description |
---|---|---|
name |
string | Button display name (supports $(icon) syntax) |
command |
string | Command to execute |
useVsCodeApi |
boolean | Use VS Code API instead of terminal |
color |
string | Button color (hex, rgb, or CSS names) |
shortcut |
string | Single character for quick access |
terminalName |
string | Custom terminal session name |
group |
array | Nested commands (supports infinite depth) |
executeAll |
boolean | Run all group commands simultaneously |
📁 Workspace Settings - Share project-specific commands with your team (saved to .vscode/settings.json
)
🌐 Global Settings - Personal commands available across all projects (saved to user settings)
Use Ctrl+Shift+P
→ Toggle Configuration Target
or the button in Configuration UI to switch between scopes.
Ctrl+Shift+;
- Open command palette- Single keys - Quick command execution in groups (e.g., press
g
thens
for Git Status)
- 🌐 Global Compatibility - Works seamlessly with 15 keyboard layouts and input methods: Korean, Russian, Arabic, Hebrew, German, Spanish, Czech, Greek, Persian, Belarusian, Ukrainian, Kazakh, Japanese, Chinese, and Hindi
- 🔄 Auto-Translation - Shortcuts automatically map between keyboard layouts and transliteration systems
- ⌨️ Natural Typing - Use your native keyboard layout without switching to English
- 🎯 Smart Matching - Type
ㅂ
on Korean keyboard to triggerq
shortcuts, orあ
in Japanese to match romaji equivalents - 🇯🇵 Japanese Support - Hiragana, Katakana, and Romaji conversion using WanaKana library
- 🇨🇳 Chinese Support - Traditional and Simplified Chinese with Pinyin conversion
- 🇮🇳 Hindi Support - Devanagari script with IAST transliteration support
- Use
$(icon-name)
syntax for VS Code icons in button names - Group related commands to keep status bar clean
- Use
executeAll: true
for monitoring multiple processes - Mix terminal commands with VS Code API calls seamlessly
- Type shortcuts in your native keyboard layout - no need to switch to English!
- 📎 VS Code Icons - Complete list of available
$(icon-name)
icons - ⚙️ Built-in Commands - VS Code API commands for
useVsCodeApi: true
- 🎯 Product Icons Reference - Official icon syntax documentation
- Hierarchical Display: See all commands organized by groups
- Direct Execution: Click any command to run immediately
- Visual Overview: Understand your command structure at a glance
{
"name": "$(eye) System Check",
"executeAll": true,
"group": [
{ "name": "CPU", "command": "top -bn1 | grep load" },
{ "name": "Memory", "command": "free -h" },
{ "name": "Disk", "command": "df -h" }
]
}
{
"name": "$(symbol-keyword) Format",
"command": "editor.action.formatDocument",
"useVsCodeApi": true
}
{
"name": "$(play) Build",
"command": "npm run build",
"terminalName": "Build-Process"
}
Feature | Quick Command Buttons | Other Extensions |
---|---|---|
Intelligent Grouping | ✅ Unlimited nesting | ❌ Limited or none |
Visual Configuration | ✅ Drag & drop UI | ❌ Manual JSON only |
Multiple Access Points | ✅ Status bar + Tree + Palette | ❌ Single method |
Smart Terminal Management | ✅ Named, organized terminals | ❌ Generic terminals |
Mixed Command Types | ✅ Terminal + VS Code API | ❌ Usually one type |
Multi-Language Keyboards | ✅ 15 languages (Korean, Japanese, Chinese, Hindi, etc.) | ❌ English only |
Real-time Updates | ✅ Instant configuration sync | ❌ Restart required |
Command | Keybinding | Description |
---|---|---|
Quick Commands: Show All |
Ctrl+Shift+; |
Open unified command palette |
Quick Commands: Open Configuration UI |
- | Launch visual configuration editor |
Quick Commands: Refresh Tree |
- | Reload tree view panel |
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X
) - Search for "Quick Command Buttons"
- Click Install
- Reload VS Code
- Start using the default commands or configure your own!
We welcome contributions! Please see our Contributing Guide for details.
- Bug Reports: GitHub Issues
- Feature Requests: GitHub Discussions
- Pull Requests: Always welcome!
MIT License - see LICENSE for details.
⭐ If Quick Command Buttons improves your workflow, please star the repo!
Made with ❤️ by KubrickCode
Streamline your workflow, one button at a time!