The Go Home menu lost in 3.9
See original GitHub issueOS/Web Information
- Remote Architecture:
code-server --version
: 3.9.3
Steps to Reproduce
- Start code-server 3.9.3
- Open in browser, and lost the
Go Home
top-left menu.
Expected
The Go Home
menu exists in all previous versions.
Actual
It displays a Log out
menu instead.
Notes
We need below command in a plugin, and now it’s not work:
vscode.commands.executeCommand('workbench.actions.goHome')
This issue can be reproduced in VS Code: No.
Issue Analytics
- State:
- Created 2 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
Menu Button (No root) - Apps on Google Play
Restores menu buttons that have disappeared from Android. No root required. You can regain the function of the application that the menu can...
Read more >Launch IDLE (python 3.9) from start menu - Stack Overflow
currently we have an MSIX package deployed for python 3.9 on Windows 10 ... However if we try to run it from start...
Read more >Kosher to Go® At Home - CJE SeniorLife
If you are already a Kosher to Go customer, please call 847.929.3020. Download: Complete Kosher to Go Menu · Price List with Nutritional...
Read more >Lost in Time Inc., Fairbury, Fairbury | Zomato
They also provide to go meals for those who are in a hurry or need to take one of their tasty desserts home....
Read more >Known Issues - Oura Help
Use this list to see if an issue affecting your Oura Ring or app is already known. ... Go the Settings menu in...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve created one: https://github.com/cdr/code-server/issues/3363
I ran into this when trying to implement the logout button using an extension. It’s possible to open a URL with
openExternal
(https://code.visualstudio.com/api/references/vscode-api#env) however I had two problems:So currently my ideas are:
openExternal
.Both ideas aren’t that great though since we don’t have the ability to change the VS Code API types. So the only real solution is to submit a patch upstream that modifies
openExternal
, I think.