Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

keybinds.toml

Keyboard shortcuts for client actions and game commands.

Basic Format

[keybinds]
"ctrl+s" = "save_layout"
"f1" = "menu"
"ctrl+c" = "copy"
"numpad1" = { command = "go southwest" }

Key Names

Modifiers

Combine with +: ctrl+shift+a, alt+f1

ModifierName
Controlctrl
Altalt
Shiftshift

Special Keys

KeyName
Function keysf1 through f12
Arrow keysup, down, left, right
Navigationhome, end, pageup, pagedown
Editinginsert, delete, backspace
Otherenter, tab, escape, space
Numpadnumpad0-numpad9, numpad_add, numpad_subtract, etc.

Action Types

Client Actions

"f1" = "menu"                   # Open main menu
"ctrl+c" = "copy"               # Copy selection
"pageup" = "scroll_up"          # Scroll focused window
"pagedown" = "scroll_down"
"ctrl+home" = "scroll_top"
"ctrl+end" = "scroll_bottom"
"ctrl+s" = "save_layout"
"ctrl+tab" = "focus_next"       # Cycle window focus
"escape" = "cancel"             # Close menu/cancel

Game Commands

"numpad1" = { command = "go southwest" }
"numpad5" = { command = "look" }
"f2" = { command = "stance defensive" }

Macros (Multiple Commands)

"ctrl+h" = { macro = "hide\npause 2\nstalk" }

Common Keybinds

[keybinds]
# Navigation
"numpad1" = { command = "go southwest" }
"numpad2" = { command = "go south" }
"numpad3" = { command = "go southeast" }
"numpad4" = { command = "go west" }
"numpad5" = { command = "look" }
"numpad6" = { command = "go east" }
"numpad7" = { command = "go northwest" }
"numpad8" = { command = "go north" }
"numpad9" = { command = "go northeast" }
"numpad_add" = { command = "go out" }
"numpad_subtract" = { command = "go up" }
"numpad_multiply" = { command = "go down" }

# Client
"f1" = "menu"
"ctrl+c" = "copy"
"ctrl+s" = "save_layout"
"pageup" = "scroll_up"
"pagedown" = "scroll_down"
"escape" = "cancel"

# Search
"ctrl+f" = "search"
"ctrl+pageup" = "prev_search_match"
"ctrl+pagedown" = "next_search_match"

Available Actions

ActionDescription
menuOpen main menu
copyCopy selected text
scroll_up / scroll_downScroll focused window
scroll_top / scroll_bottomJump to top/bottom
focus_next / focus_prevCycle window focus
save_layoutSave current layout
cancelClose menu or cancel operation
searchOpen search in focused window
prev_search_match / next_search_matchCycle search results