aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/cli.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2020-01-07 15:59:23 +0000
committerGitHub <noreply@github.com>2020-01-07 15:59:23 +0000
commitfc86d7620e960f3e30adef55b6af755a3c5b6c13 (patch)
tree5032fb2a709181878ecbd5962419d77bf980c6e5 /alacritty/src/cli.rs
parent183ceee3adf4ac5a889db3ed904e7adbf9ccb4f1 (diff)
downloadr-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.tar.gz
r-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.tar.bz2
r-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.zip
Fix keybinding deserialization
Fixes #3160.
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r--alacritty/src/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs
index 8abee061..a7b97385 100644
--- a/alacritty/src/cli.rs
+++ b/alacritty/src/cli.rs
@@ -165,7 +165,7 @@ impl Options {
.help("Start the shell in the specified working directory"),
)
.arg(Arg::with_name("config-file").long("config-file").takes_value(true).help(
- &format!("Specify alternative configuration file [default: {}]", CONFIG_PATH)
+ &format!("Specify alternative configuration file [default: {}]", CONFIG_PATH),
))
.arg(
Arg::with_name("command")