diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-05-01 13:49:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 13:49:58 +0000 |
commit | 257d0b5fde7044b0748e039cbd137a703e4f0091 (patch) | |
tree | 30af962b4bf598e29ddb1ed343553d14d154352b | |
parent | e3818a226c79f263d6e19fe83f411b199f7e55ef (diff) | |
download | alacritty-257d0b5fde7044b0748e039cbd137a703e4f0091.tar.gz alacritty-257d0b5fde7044b0748e039cbd137a703e4f0091.zip |
Add deprecation warning for mouse URL config
Fixes #5035.
-rw-r--r-- | alacritty/src/config/mouse.rs | 2 |
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)] |