Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d428eb commit 36f00edCopy full SHA for 36f00ed
package.json
@@ -192,6 +192,12 @@
192
}
193
],
194
"menus": {
195
+ "commandPalette": [
196
+ {
197
+ "command": "coder.openFromSidebar",
198
+ "when": "false"
199
+ }
200
+ ],
201
"view/title": [
202
{
203
"command": "coder.logout",
src/commands.ts
@@ -351,6 +351,10 @@ export class Commands {
351
treeItem.workspaceFolderPath,
352
true,
353
)
354
+ } else {
355
+ // If there is no tree item, then the user manually ran this command.
356
+ // Default to the regular open instead.
357
+ return this.open()
358
359
360
0 commit comments