Is it possible to go back one level of breadcrumbs using hotkey in VS Code?

Viewed 205

VSCode has breadcrumbs feature that looks like this:

enter image description here

Is it possible to go back one level in these breadcrumbs using a hotkey? So in the case above, I am inside propTypes. I press hotkey and I go to BatchTypesTable.

I can achieve this already by clicking on the breadcrumb itself but I want to have a hotkey to do this.

1 Answers

On MacOS, my keyboard workflow is:

  • open breadcrmb with shiftcommand.
  • then navigate the top level with option and option
  • use plain arrows to navigate inside the drop-down list

So, I guess on windows top-level navigation would be alt?

Relevant VSC documentation here. Although it seems to be incomplete and partially incorrect?

Related