# All Available Actions | Action | Default Keys | Description | | --------------- | ------------------------- | ------------------------------------------------------------ | | move_up | `k`, `` | Move cursor up | | move_down | `j`, `` | Move cursor down | | move_left | `h`, `` | Move cursor left | | move_right | `l`, `` | Move cursor right | | select_focus | `` | Toggle select current item | | select_parent | `p` | Move cursor to the parent item | | select_first | `g` | Move cursor to the top | | select_last | `G` | Move cursor to the bottom | | close_parent | `` | Move cursor to the parent and close | | change_root | `r` | Change current item as root
Use `reset` action to recover | | reset | `` | Reset cursor and items | | page_up | ``, `` | Scroll up | | page_down | ``, `` | Scroll down | | change_layout | `v` | Change current layout | | tree_scale_up | `[` | Scale up tree widget | | tree_scale_down | `]` | Scale down tree widget | | switch | `` | Switch focus widget | | edit | `e` | Open current item in editor
**(ReadOnly)** | | copy_name | `y` | Copy current selected item's name | | copy_value | `Y` | Copy current selected item's value | | quit | ``, `q` | Quit program | All available keys: - `x`:Single key. Use a single character to map keyboard keys. - Special keys in keyboard: ``, ``, ``, ``, ``, ``, ``, ``, ``, ``. - ``: Function keys, like ``, ``, the `n` should be less or equal than `12`. - ``: Press control and another single key. - ``: Press alt and another single key. You can change the key bindings in config file, like: ```toml [keys] select_focus = [" ", ""] ``` This changes `select_focus` action's key binding to `space` and `` keys.