Appearance
The extension does not define default shortcuts to avoid conflicts. You can configure custom keybindings:
Setting Up Custom Keybindings ​
- Open Keyboard Shortcuts:
Cmd+K Cmd+S/Ctrl+K Ctrl+S - Search for command (e.g., "Beans: Create Bean")
- Click
+to add binding
Recommended Keybindings ​
Add to your keybindings.json:
json
[
{
"key": "cmd+shift+b c",
"command": "beans.create",
"when": "beans.initialized"
},
{
"key": "cmd+shift+b v",
"command": "beans.view",
"when": "beans.initialized"
},
{
"key": "cmd+shift+b r",
"command": "beans.refresh",
"when": "beans.initialized"
},
{
"key": "cmd+shift+b s",
"command": "beans.search",
"when": "beans.initialized"
}
]