Open paths starting with ~ from terminal click

This commit is contained in:
Kirill Bulatov 2023-07-22 01:34:25 +03:00
parent 7788eabec0
commit dcaf8a9af8
2 changed files with 11 additions and 1 deletions

View file

@ -76,7 +76,7 @@ lazy_static! {
// Regex Copied from alacritty's ui_config.rs
static ref URL_REGEX: RegexSearch = RegexSearch::new(r#"(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file://|git://|ssh:|ftp://)[^\u{0000}-\u{001F}\u{007F}-\u{009F}<>"\s{-}\^⟨⟩`]+"#).unwrap();
static ref WORD_REGEX: RegexSearch = RegexSearch::new("[\\w.:/@-]+").unwrap();
static ref WORD_REGEX: RegexSearch = RegexSearch::new("[\\w.:/@-~]+").unwrap();
}
///Upward flowing events, for changing the title and such