pub const HELP: &str = r#"
:help Toggle this help
:e <path..> Edit path(s)
:w [<path>] Write view / Write view as <path>
:q Quit view
:q! Force quit view
:echo <val> Echo a value
:echo "pixel!" Echo the string "pixel!"
:set <setting> = <val> Set <setting> to <val>
:set <setting> Set <setting> to `on`
:unset <setting> Set <setting> to `off`
:toggle <setting> Toggle <setting> `on` / `off`
:slice <n> Slice view into <n> frames
:source <path> Source an rx script (eg. a palette or config)
:map <key> <command> Map a key combination to a command
:f/resize <w> <h> Resize frames
:f/add Add a blank frame to the view
:f/remove Remove the last frame of the view
:f/clone <index> Clone frame <index> and add it to the view
:f/clone Clone the last frame and add it to the view
:p/clear Clear the palette
:p/add <color> Add <color> to the palette, eg. #ff0011
:brush/set <mode> Set brush mode, eg. `xsym` and `ysym` for symmetry
:brush/unset <mode> Unset brush mode
SETTINGS
debug on/off Debug mode
checker on/off Alpha checker toggle
vsync on/off Vertical sync toggle
input/delay 0.0..32.0 Delay between render frames (ms)
scale 1.0..4.0 UI scale
animation on/off View animation toggle
animation/delay 1..1000 View animation delay (ms)
background #000000..#ffffff Set background appearance to <color>, eg. #ff0011
"#;Expand description
Help string.