feat(vscode-ide-companion): update command identifiers to use kebab-case

Standardize command naming convention by changing qwenCode.* to qwen-code.* in package.json configuration
This commit is contained in:
yiliang114
2025-12-06 21:45:04 +08:00
parent 96b275a756
commit 413c143004

View File

@@ -56,17 +56,17 @@
"title": "Qwen Code: View Third-Party Notices" "title": "Qwen Code: View Third-Party Notices"
}, },
{ {
"command": "qwenCode.openChat", "command": "qwen-code.openChat",
"title": "Qwen Code: Open Chat", "title": "Qwen Code: Open Chat",
"icon": "./assets/icon.png" "icon": "./assets/icon.png"
}, },
{ {
"command": "qwenCode.clearAuthCache", "command": "qwen-code.login",
"title": "Qwen Code: Clear Authentication Cache" "title": "Qwen Code: Login"
}, },
{ {
"command": "qwenCode.login", "command": "qwen-code.clearAuthCache",
"title": "Qwen Code: Login" "title": "Qwen Code: Clear Authentication Cache"
} }
], ],
"configuration": { "configuration": {
@@ -90,7 +90,7 @@
"when": "qwen.diff.isVisible" "when": "qwen.diff.isVisible"
}, },
{ {
"command": "qwenCode.login", "command": "qwen-code.login",
"when": "false" "when": "false"
} }
], ],
@@ -106,7 +106,7 @@
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "qwenCode.openChat", "command": "qwen-code.openChat",
"group": "navigation" "group": "navigation"
} }
] ]
@@ -123,7 +123,7 @@
"when": "qwen.diff.isVisible" "when": "qwen.diff.isVisible"
}, },
{ {
"command": "qwenCode.openChat", "command": "qwen-code.openChat",
"key": "ctrl+shift+a", "key": "ctrl+shift+a",
"mac": "cmd+shift+a" "mac": "cmd+shift+a"
} }