diff --git a/src/actions/spaceMode.ts b/src/actions/spaceMode.ts index 2b6617e7..e8bc8ba7 100644 --- a/src/actions/spaceMode.ts +++ b/src/actions/spaceMode.ts @@ -58,4 +58,8 @@ export const spaceActions: Action[] = [ parseKeysExact([' ', '/'], [Mode.Normal], () => { commands.executeCommand('workbench.action.findInFiles'); }), + + parseKeysExact([' ', '?'], [Mode.Normal], () => { + commands.executeCommand('workbench.action.showCommands'); + }), ];