diff --git a/example_config/example.config.jsonc b/example_config/example.config.jsonc index 0d9f818..ca4f809 100644 --- a/example_config/example.config.jsonc +++ b/example_config/example.config.jsonc @@ -37,6 +37,7 @@ // Available keys are; // 1) a-z and A-Z // 2) 0-9 + // WARNING if using the \ key, it needs to be escaped, e.g. log_section_toggle = ["\\"] // 3) / \ , . # ' [ ] ; = - // 3) F1-F12 // 4) backspace, tab, backtab, delete, end, esc, home, insert, pagedown, pageup, left, right, up, down diff --git a/example_config/example.config.toml b/example_config/example.config.toml index 467bbf3..86753aa 100644 --- a/example_config/example.config.toml +++ b/example_config/example.config.toml @@ -50,10 +50,12 @@ show_logs = true # Available keys are; # 1) a-z and A-Z # 2) 0-9 +# WARNING if using the \ key, it needs to be escaped, e.g. log_section_toggle = ["\\"] # 3) / \ , . # ' [ ] ; = - # 3) F1-F12 # 4) backspace, tab, backtab, delete, end, esc, home, insert, pagedown, pageup, left, right, up, down + # Each definition can have two keys associated with it # If any key clashes are found, oxker will revert to it's default keymap diff --git a/src/config/config.toml b/src/config/config.toml index 05984f6..9ccba74 100644 --- a/src/config/config.toml +++ b/src/config/config.toml @@ -50,6 +50,7 @@ show_logs = true # Available keys are; # 1) a-z and A-Z # 2) 0-9 +# WARNING if using the \ key, it needs to be escaped, e.g. log_section_toggle = ["\\"] # 3) / \ , . # ' [ ] ; = - # 3) F1-F12 # 4) backspace, tab, backtab, delete, end, esc, home, insert, pagedown, pageup, left, right, up, down