You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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?
The text was updated successfully, but these errors were encountered:
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.
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:
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?
The text was updated successfully, but these errors were encountered: