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

Keybind Actions

Customize keyboard shortcuts for commands and actions.

Basic Keybind

[keybinds]
"f2" = { command = "stance offensive" }

Key Format

modifier+key

Modifiers

  • ctrl - Control key
  • alt - Alt key
  • shift - Shift key

Combine: ctrl+shift+a

Key Names

KeysNames
Lettersa through z
Numbers0 through 9
Functionf1 through f12
Arrowsup, down, left, right
Navigationhome, end, pageup, pagedown
Numpadnumpad0-numpad9, numpad_add, etc.
Otherenter, tab, escape, space, backspace

Action Types

Game Commands

"f2" = { command = "stance offensive" }
"numpad5" = { command = "look" }

Macros (Multiple Commands)

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

Client Actions

"f1" = "menu"
"ctrl+c" = "copy"
"pageup" = "scroll_up"

Available Actions

ActionDescription
menuOpen main menu
copyCopy selection
scroll_upScroll focused window up
scroll_downScroll focused window down
scroll_topJump to top
scroll_bottomJump to bottom
focus_nextFocus next window
focus_prevFocus previous window
save_layoutSave current layout
cancelClose menu/cancel
searchSearch in window

Example Configuration

[keybinds]
# Navigation (numpad)
"numpad1" = { command = "go sw" }
"numpad2" = { command = "go s" }
"numpad3" = { command = "go se" }
"numpad4" = { command = "go w" }
"numpad5" = { command = "look" }
"numpad6" = { command = "go e" }
"numpad7" = { command = "go nw" }
"numpad8" = { command = "go n" }
"numpad9" = { command = "go ne" }
"numpad_add" = { command = "go out" }
"numpad_subtract" = { command = "go up" }
"numpad_multiply" = { command = "go down" }

# Combat stances
"f2" = { command = "stance offensive" }
"f3" = { command = "stance defensive" }
"f4" = { command = "stance guarded" }

# Quick actions
"f5" = { command = "look in my backpack" }
"f6" = { command = "inventory" }

# Macros
"ctrl+h" = { macro = "hide\npause 2\nstalk" }
"ctrl+l" = { macro = "search\npause 1\nloot" }

# Client
"f1" = "menu"
"ctrl+s" = "save_layout"
"ctrl+c" = "copy"
"escape" = "cancel"