I am trying to figure out how you can move the focus from the terminal over to the file tree. I am currently able to go from my code editing space over to the file tree with the snippet below:
{ // Toggle to the file tree
"key": "ctrl+m",
"command": "workbench.view.explorer"
// "when": "viewContainer.workbench.view.explorer.enabled"
}
I am sure that it is an easy fix, but I am not certain how you can go about doing this as I am still relatively new to playing with the keybindings in VS Code.