InspectHotkeys
type InspectHotkeys = { collapseTop: string | false expandTop: string | false search: string | false}Hotkeys configuration using tinykeys syntax.
Note: The string '$mod' means “command” on macOS and “ctrl” on Windows / Linux
Example
Section titled “Example”<Inspect hotkeys={{ expandTop: 'Shift+$mod+ArrowUp', // override collapseTop: false, // disable // search: '' // keeps default if omitted }}/>Properties
Section titled “Properties”collapseTop
Section titled “collapseTop”collapseTop: string | falseHotkey for collapsing all top level nodes
Default
Section titled “Default”'$mod+ArrowLeft'expandTop
Section titled “expandTop”expandTop: string | falseHotkey for expanding all top level nodes
Default
Section titled “Default”'$mod+ArrowRight'search
Section titled “search”search: string | falseHotkey for focusing search field if search is enabled
Default
Section titled “Default”'Shift+$mod+F'