diff --git a/packages/commands/src/components/command-menu.js b/packages/commands/src/components/command-menu.js index e844fce7bae73c..4c3b4723b9a65f 100644 --- a/packages/commands/src/components/command-menu.js +++ b/packages/commands/src/components/command-menu.js @@ -203,8 +203,9 @@ export function CommandMenu() { description: __( 'Open the command palette.' ), keyCombination: { modifier: 'primary', - character: 'k', + character: '/', }, + aliases: [ { character: 'F1' } ], } ); }, [ registerShortcut ] ); @@ -221,9 +222,6 @@ export function CommandMenu() { } else { open(); } - }, - { - bindGlobal: true, } ); diff --git a/packages/edit-site/src/components/site-hub/index.js b/packages/edit-site/src/components/site-hub/index.js index f79df2df367090..71e01d2c202951 100644 --- a/packages/edit-site/src/components/site-hub/index.js +++ b/packages/edit-site/src/components/site-hub/index.js @@ -196,7 +196,7 @@ const SiteHub = memo( ( { isTransparent, className } ) => { icon={ search } onClick={ () => openCommandCenter() } label={ __( 'Open command palette' ) } - shortcut={ displayShortcut.primary( 'k' ) } + shortcut={ displayShortcut.primary( '/' ) } /> ) } diff --git a/packages/editor/src/components/document-bar/index.js b/packages/editor/src/components/document-bar/index.js index fdf9cbe55dbca7..31d0094da71930 100644 --- a/packages/editor/src/components/document-bar/index.js +++ b/packages/editor/src/components/document-bar/index.js @@ -184,7 +184,7 @@ function BaseDocumentActions( { postType, postId, onBack } ) { - { displayShortcut.primary( 'k' ) } + { displayShortcut.primary( '/' ) } ) }