* Fixing YAML => KDL conversion with backslash hotkey.
Previously if the hotkey of backslash was used the yaml => kdl
conversion would create a KDL statement like so: `bind "\" {...}`.
That is incorrect kdl syntax since the backslash escapes the following
quote character. A way to get proper KDL is `bind r"\" {...}`. This
commit changes if the old HotKey is a backslash a properly creates KDL
syntax to address the backslash character.
* rustfmt
|
||
|---|---|---|
| .. | ||
| old_config_converter | ||
| unit | ||
| cli_client.rs | ||
| command_is_executing.rs | ||
| input_handler.rs | ||
| lib.rs | ||
| os_input_output.rs | ||
| stdin_ansi_parser.rs | ||
| stdin_handler.rs | ||