Skip to content
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

Ability to reposition the quick access icons in the bottom bar. #110947

Closed
sujit510 opened this issue Nov 19, 2020 · 3 comments
Closed

Ability to reposition the quick access icons in the bottom bar. #110947

sujit510 opened this issue Nov 19, 2020 · 3 comments
Assignees
Labels
*duplicate Issue identified as a duplicate of another issue(s)

Comments

@sujit510
Copy link

I recently installed Bitbucket and JIRA plugins in my VSCode, it added quick access icons for them in the bottom of the editor as highlighted in red rectangle below:

image_2020_11_19T13_23_36_403Z

This has shifted the shortcut to open terminal to the right (highlighted in yellow rectangle) of those newly added JIRA/Bitbucket shortcuts. Since I was used to look for the shortcut of terminal in the left, it sometimes irritates to find it.
Can those shortcuts be made draggable or any other means to reposition?

@gjsjohnmurray
Copy link
Contributor

AFAIK there's currently no ability for end-user reordering of these. The extensions you added must be specifying the priority of their StatusBarItem(s) as greater than 50, which is the fixed value used by the panel you marked in yellow on your screenshot:

this.markersStatusItem = this._register(this.statusbarService.addEntry(this.getMarkersItem(), 'status.problems', localize('status.problems', "Problems"), StatusbarAlignment.LEFT, 50 /* Medium Priority */));

I suggest you contact the extension author(s) and ask for that value to be user-configurable.

@usernamehw
Copy link
Contributor

/duplicate of #35744

@github-actions github-actions bot locked and limited conversation to collaborators Jan 3, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
*duplicate Issue identified as a duplicate of another issue(s)
Projects
None yet
Development

No branches or pull requests

5 participants
@sujit510 @gjsjohnmurray @chrmarti @usernamehw and others