diff options
author | Robert Bittle <robert.bittle@dominionenterprises.com> | 2017-10-21 18:26:14 -0400 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-10-21 15:26:14 -0700 |
commit | 7a5eebd0941169396557b80084c0c8f354c6840f (patch) | |
tree | df13011b66a1b66804a84399de20171d66775d1c | |
parent | 2ea6ec5c8f9270ffd1a74b4c8db43ddc2a921ca3 (diff) | |
download | alacritty-7a5eebd0941169396557b80084c0c8f354c6840f.tar.gz alacritty-7a5eebd0941169396557b80084c0c8f354c6840f.zip |
List all valid actions in config error message (#848)
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index eacb1c7e..7980992c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -399,7 +399,7 @@ impl<'a> de::Deserialize<'a> for ActionWrapper { type Value = ActionWrapper; fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result { - f.write_str("Paste, Copy, PasteSelection, or Quit") + f.write_str("Paste, Copy, PasteSelection, IncreaseFontSize, DecreaseFontSize, ResetFontSize, or Quit") } fn visit_str<E>(self, value: &str) -> ::std::result::Result<ActionWrapper, E> |