How can we open/close the file explorer on the left?
You can use <Ctrl+Shift+B> to toggle the side bar, or if you'd prefer some other keybind, you could unbind that and rebind any set of keys using the Oni input API and the command "sidebar.toggle", ie putting the folloing in the activate section of your config.js:
oni.input.unbind("<s-c-b>")
oni.input.bind("<s-c-q>", "sidebar.toggle")
Sweeet. Seems intuitive that clicking on the icon in the left bar would also open/close the view.
There are two improvements that are very needed for the Sidebar at the moment:
I think the question was answered already so we can close this issue and track the improvements somewhere else or discuss these items here.
this doesn't seem to work on OSx. anybody else experiencing this issue?
@brianyang on OSX the shortcut is command shift b.
The sidebar default state can be configured with sidebar.default.open. The shortcut was already clarified.
Progress on sidebar functionality is being tracked on separate issues.
Most helpful comment
You can use
<Ctrl+Shift+B>to toggle the side bar, or if you'd prefer some other keybind, you could unbind that and rebind any set of keys using the Oni input API and the command"sidebar.toggle", ie putting the folloing in theactivatesection of yourconfig.js: