diff --git a/docs/content/2.composables/define-shortcuts.md b/docs/content/2.composables/define-shortcuts.md index f344572d..2e3f5d9f 100644 --- a/docs/content/2.composables/define-shortcuts.md +++ b/docs/content/2.composables/define-shortcuts.md @@ -19,7 +19,6 @@ defineShortcuts({ ``` -- Shortcuts are automatically adjusted for non-macOS platforms, converting `meta` to `ctrl`. - The composable uses VueUse's [`useEventListener`](https://vueuse.org/core/useEventListener/) to handle keydown events. - For a complete list of available shortcut keys, refer to the [`KeyboardEvent.key`](https://developer.mozilla.org/en-US/docs/Web/API/UI_Events/Keyboard_event_key_values) API documentation. Note that the key should be written in lowercase. @@ -47,8 +46,8 @@ Shortcuts are defined using the following format: #### Modifiers -- `meta`: Represents Command (⌘) on macOS and Control on other platforms -- `ctrl`: Represents Control key +- `meta`: Represents `⌘ Command` on macOS and `⊞ Windows` on Windows +- `ctrl`: Represents `Ctrl` on all platforms - `shift`: Used for alphabetic keys when Shift is required #### Special Keys