-
I checked the documentation, and search on the issues, but didn't find a way to hide or show the file explorer. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok, it look like i didn't search enough. It was just on the UI itself and the name for this is not sidebar, pane, or such... but dock. Adding this into the keymap.json make it work for me: {
"context": "Workspace",
"bindings": {
"ctrl-b": "workspace::ToggleLeftDock"
}
},
{
"context": "Editor",
"bindings": {
"ctrl-b": "workspace::ToggleLeftDock"
}
}, |
Beta Was this translation helpful? Give feedback.
Ok, it look like i didn't search enough. It was just on the UI itself and the name for this is not sidebar, pane, or such... but dock.
On linux using Zed 0.162.0, Control+B never worked to close the pane (i was used to this in nvim), the editor cursor actually goes to the end of the file.
Adding this into the keymap.json make it work for me: