Add keybindings to visual list

This commit is contained in:
Frank Noirot
2025-07-03 00:13:44 -04:00
parent d5d8322ae6
commit 66d0556389

View File

@ -185,6 +185,22 @@ export const interactionMap: Record<
'Available when a file or folder is selected in the file tree.',
},
],
Miscellaneous: [
{
name: 'undo',
sequence: `${PRIMARY}+Z`,
title: 'Undo',
description:
'Available while modeling and writing code. Currently only steps back in modeling history, or code history.',
},
{
name: 'redo',
sequence: `${PRIMARY}+Shift+Z`,
title: 'Redo',
description:
'Available while modeling and writing code. Currently only steps forward in modeling history, or code history.',
},
],
}
/**