Description
We have turned our new editor action bar on by default and have gotten a fair amount of feedback that it feels a bit awkward for regular source editors, such as .py
files, or when making screencasts or teaching with Positron. The main challenge is that for regular source code files, it feels like too much empty space for folks. There is an example in #7241 but this is getting to be very common feedback, including from internal users:

Folks can turn off the new editor action bar using settings:
"editor.actionBar.enabled": false,
"workbench.editor.editorActionsLocation": "default",
But if they do that, then some of our core functionality that uses the editor action bar is broken. See for example, the Data Explorer's appearance with these settings:
Plots in an editor tab are also not great under these settings.
I notice that folks' discomfort about the editor action bar is largely for regular source editors. What are some possible options to resolve this widespread discomfort?
- Let the breadcrumb share vertical space with the editor action bar
- Keep editor actions in the VS Code default area on regular source editors
- Unbreak the Data Explorer when
"editor.actionBar.enabled": false
- Add more affordances to make the existing space more useful (specifically use space on the left in a legitimately helpful way, or could this be user configurable?)
- Other ideas?