Skip to content

Commit

Permalink
KeyboardShortcuts: Update delete shortcut to use Shift + Delete and a…
Browse files Browse the repository at this point in the history
…dd Backspace alias
  • Loading branch information
yogeshbhutkar committed Dec 20, 2024
1 parent 5bc7972 commit f97f17f
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,14 @@ function KeyboardShortcutsRegister() {
category: 'block',
description: __( 'Remove the selected block(s).' ),
keyCombination: {
modifier: 'access',
character: 'z',
modifier: 'shift',
character: 'del',
},
aliases: [
{
character: 'backspace',
},
],
} );

registerShortcut( {
Expand Down

0 comments on commit f97f17f

Please sign in to comment.