diff --git a/src/KbdEditing.js b/src/KbdEditing.js index f4e8fd83e..369b5be21 100644 --- a/src/KbdEditing.js +++ b/src/KbdEditing.js @@ -39,6 +39,6 @@ export default class KbdEditing extends Plugin { } ); editor.commands.add( KBD, new AttributeCommand( editor, KBD ) ); - editor.keystrokes.set( 'ALT+SHIFT+K', KBD ); + editor.keystrokes.set( 'CTRL+ALT+K', KBD ); } } diff --git a/src/KbdUI.js b/src/KbdUI.js index be6e55bf8..74d776a8a 100644 --- a/src/KbdUI.js +++ b/src/KbdUI.js @@ -26,7 +26,7 @@ export default class KbdUI extends Plugin { view.set( { label: t( 'Keyboard shortcut' ), icon: kbdIcon, - keystroke: 'ALT+SHIFT+K', + keystroke: 'CTRL+ALT+K', tooltip: true, isToggleable: true } );