@wordpress/keyboard-shortcuts Edit

Keyboard shortcuts is a generic package that allows registering and modifying shortcuts.

Installation Installation

Install the module

npm install @wordpress/keyboard-shortcuts --save

This package assumes that your code will run in an ES2015+ environment. If you’re using an environment that has limited or no support for ES2015+ such as IE browsers then using core-js will add polyfills for these methods.

Top ↑

API API

store store

Store definition for the keyboard shortcuts namespace.

Related

Type

  • Object

Top ↑

useShortcut useShortcut

Attach a keyboard shortcut handler.

Parameters

  • name string: Shortcut name.
  • callback Function: Shortcut callback.
  • options Object: Shortcut options.

Code is Poetry.