summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2021-05-01 13:49:58 +0000
committerChristian Duerr <contact@christianduerr.com>2021-05-01 17:30:49 +0000
commitd434fbb82e1650db7f51427357a86381ef4fa107 (patch)
tree8b55b77acff25d7ec727564def98600e5e2a13e5
parent347dbd9cbe0cb875e77e0dd6be3fd094a1d00843 (diff)
downloadalacritty-d434fbb82e1650db7f51427357a86381ef4fa107.tar.gz
alacritty-d434fbb82e1650db7f51427357a86381ef4fa107.zip
Add deprecation warning for mouse URL config
Fixes #5035.
-rw-r--r--alacritty/src/config/mouse.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty/src/config/mouse.rs b/alacritty/src/config/mouse.rs
index aed1ab04..291e4c61 100644
--- a/alacritty/src/config/mouse.rs
+++ b/alacritty/src/config/mouse.rs
@@ -7,6 +7,8 @@ pub struct Mouse {
pub double_click: ClickHandler,
pub triple_click: ClickHandler,
pub hide_when_typing: bool,
+ #[config(deprecated = "use `hints` section instead")]
+ pub url: Option<serde_yaml::Value>,
}
#[derive(ConfigDeserialize, Clone, Debug, PartialEq, Eq)]