diff options
author | Raphael Nestler <raphael.nestler@gmail.com> | 2021-04-30 18:13:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 16:13:29 +0000 |
commit | 78e04445c755c1276af037dda4318b3a61af3f37 (patch) | |
tree | 99c340c2950c5be244d450c935a70038139c0769 | |
parent | edf0faf98fe69d79bdc4798fb574a46d9956156a (diff) | |
download | alacritty-78e04445c755c1276af037dda4318b3a61af3f37.tar.gz alacritty-78e04445c755c1276af037dda4318b3a61af3f37.zip |
Add support for magnet URLs
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | alacritty/src/config/ui_config.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a4bf4095..ed914a19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Synchronized terminal updates using `DCS = 1 s ST`/`DCS = 2 s ST` - Regex terminal hints ([see features.md](./docs/features.md#hints)) - macOS keybinding (cmd+alt+H) hiding all windows other than Alacritty +- Support for `magnet` URLs ### Changed diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs index 135d12c8..4b520640 100644 --- a/alacritty/src/config/ui_config.rs +++ b/alacritty/src/config/ui_config.rs @@ -23,7 +23,7 @@ use crate::config::window::WindowConfig; /// Regex used for the default URL hint. #[rustfmt::skip] -const URL_REGEX: &str = "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\ +const URL_REGEX: &str = "(magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\ [^\u{0000}-\u{001F}\u{007F}-\u{009F}<>\" {-}\\^⟨⟩`]+"; #[derive(ConfigDeserialize, Debug, PartialEq)] |