We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7f427 commit 9d0603bCopy full SHA for 9d0603b
client/modules/IDE/pages/IDEView.jsx
@@ -156,6 +156,13 @@ class IDEView extends React.Component {
156
} else if (e.keyCode === 49 && ((e.metaKey && this.isMac) || (e.ctrlKey && !this.isMac)) && e.shiftKey) {
157
e.preventDefault();
158
this.props.setAllAccessibleOutput(true);
159
+ } else if (e.keyCode === 66 && ((e.metaKey && this.isMac) || (e.ctrlKey && !this.isMac))) {
160
+ e.preventDefault();
161
+ if (!this.props.ide.sidebarIsExpanded) {
162
+ this.props.expandSidebar();
163
+ } else {
164
+ this.props.collapseSidebar();
165
+ }
166
}
167
168
0 commit comments