From c2e335a459fe7411ff9bda6ecd6b389eefc5bd32 Mon Sep 17 00:00:00 2001 From: Knox Lively Date: Tue, 23 Apr 2024 23:06:29 -0600 Subject: [PATCH] incorporated cole's feedback --- reference/customKeybindings.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/customKeybindings.mdx b/reference/customKeybindings.mdx index 9bf2d09..5e9e89f 100644 --- a/reference/customKeybindings.mdx +++ b/reference/customKeybindings.mdx @@ -29,9 +29,9 @@ Each keybinding rule in the *keybindings.json* file consists of the following fi ### Key Code Support -Wave supports [JavaScript key codes](https://www.toptal.com/developers/keycode/table), which are numerical values that correspond to specific keys on a keyboard, regardless of the keyboard layout or locale. By using key codes, you can create custom keyboard shortcuts that work consistently across different keyboards and languages. Wave specifically uses the `event.code` property. +Wave supports [JavaScript key codes](https://www.toptal.com/developers/keycode/table), which are numerical values that correspond to specific keys on a keyboard, regardless of the keyboard layout or locale. By using key codes, you can create custom keyboard shortcuts that work consistently across different keyboards and languages. Wave specifically uses the `event.key` property. -Use [this]( https://www.toptal.com/developers/keycode) utility to determine the correct `event.code` for specific keys. +Use [this]( https://www.toptal.com/developers/keycode) utility to determine the correct `event.key` for specific keys. ## Usage @@ -58,7 +58,7 @@ You can modify an existing keybinding to change the associated keys or behavior ```json { "command": "system:toggleDeveloperTools", - "keys": ["Cmd:Option:i{KeyZ}"], + "keys": ["Cmd:Option:c{KeyZ}"], "info": "Opens the Chrome Developer Tools menu" } ```