From 96fc9ecc9a62c8a766da745d05fbe60e6c2e1efe Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Tue, 13 Apr 2021 03:24:42 +0000 Subject: Add vi/mouse hint highlighting support This patch removes the old url highlighting code and replaces it with a new implementation making use of hints as sources for finding matches in the terminal. --- alacritty/src/config/bindings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/config/bindings.rs') diff --git a/alacritty/src/config/bindings.rs b/alacritty/src/config/bindings.rs index 91cc09d6..4e7c2fcb 100644 --- a/alacritty/src/config/bindings.rs +++ b/alacritty/src/config/bindings.rs @@ -1162,7 +1162,7 @@ impl<'a> de::Deserialize<'a> for ModsWrapper { type Value = ModsWrapper; fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.write_str("a subset of Shift|Control|Super|Command|Alt|Option") + f.write_str("None or a subset of Shift|Control|Super|Command|Alt|Option") } fn visit_str(self, value: &str) -> Result -- cgit