Shortcuts Config
fun ShortcutsConfig(activateFocused: KeyboardEventMatcher = KeyboardEventMatcher(
type = KeyboardEventType.KEY_PRESSED,
code = KeyCode.SPACE
), deactivateActivated: KeyboardEventMatcher = KeyboardEventMatcher(
type = KeyboardEventType.KEY_RELEASED,
code = KeyCode.SPACE
), focusNext: KeyboardEventMatcher = KeyboardEventMatcher(
type = KeyboardEventType.KEY_PRESSED,
code = KeyCode.TAB,
shiftDown = false
), focusPrevious: KeyboardEventMatcher = KeyboardEventMatcher(
type = KeyboardEventType.KEY_PRESSED,
code = KeyCode.TAB,
shiftDown = true
))
Content copied to clipboard
Sources
(source)
Link copied to clipboard