-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Editor actions are hard to discover when tabs are enabled #7666
Comments
Since this is a somewhat adoption blocker for people in the team to use tabs, we should look into this. |
We also have an issue that the path on a tab is only accessible from the native hover (which sometimes appears late). So I wonder if maybe we could combine both issues into one and show the path of the file along with the editor actions somewhere when you hover over the tab. Or, if we decide to introduce an editor toolbar, maybe it could be in there? I think for this issue we should just sit together and brainstorm UX ideas. |
when the filename is very long, a tab takes lots of width. the name should be shortened with an hellipsis character. Instead of 'thisisaverylongfilename.txt' it might only show 'thisisav…e.txt'. |
UX Meeting Summary: |
Is this the reason why the current version of vscode is not showing command icons defined like: {
"command": "i18nTag.validateTranslation",
"category": "i18nTag",
"title": "Validate translation file",
"icon": {
"light": "./media/validate_icon.svg",
"dark": "./media/validate_icon_inverted.svg"
}
} or do I have to add the media files somehow to the release output of my extension? |
Just talked over standup with the PMs. We can go ahead and test this with insiders over the next 3 weeks and monitor feedback from insiders. If there are any big gotchas, we can revert before the July release. When you're back we can further iterate. |
@bgashler1 sounds good. I would not go as far as to revert this change entirely, imho the only questionable thing is the overflow action. Let me push a boolean flag to bring it back and instruct you guys here how to enable that in case needed! |
@skolmer I depends where you let the command show. Currently, only |
@jrieken thank you! I think that's it. I used a custom group and not |
I added a flag to https://github.com/Microsoft/vscode/blob/master/src/vs/workbench/browser/parts/editor/titleControl.ts#L56 @isidorn is fit enough for July to tweak this experience as needed 👍 |
Verified via #9701 |
Due to limited space in a tab, we put the editor actions into the context menu. This makes them much harder to use and explore compared to having them visible with icons in the title header when tabs are disabled.
The text was updated successfully, but these errors were encountered: