Merge pull request #6 from mplemay/main

feat: added open command palette functionality to space mode
This commit is contained in:
Jason Williams 2024-01-02 11:09:28 +00:00 committed by GitHub
commit 6b5782fef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,4 +58,8 @@ export const spaceActions: Action[] = [
parseKeysExact([' ', '/'], [Mode.Normal], () => {
commands.executeCommand('workbench.action.findInFiles');
}),
parseKeysExact([' ', '?'], [Mode.Normal], () => {
commands.executeCommand('workbench.action.showCommands');
}),
];