| 64 | * Options to configure the behavior of keybindings. |
| 65 | */ |
| 66 | export interface KeybindingOptions extends KeybindingHandlerOptions { |
| 67 | /** |
| 68 | * Key presses will listen to this event (default: "keydown"). |
| 69 | */ |
| 70 | event?: "keydown" | "keyup" |
| 71 | |
| 72 | /** |
| 73 | * Key presses will use a capture listener (default: false) |
| 74 | */ |
| 75 | capture?: boolean |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * These are the modifier keys that change the meaning of keybindings. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…