aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2018-10-02 21:52:17 +0200
committerChristian Duerr <contact@christianduerr.com>2018-10-02 21:52:17 +0200
commit9d42de6c7cc323cd5e8f3ad394c043f3b8432475 (patch)
tree280481a0394ebe3d056843249c93b525bab80b56 /src/lib.rs
parente01317d88593af7874da13c2043aa53336fb2d73 (diff)
downloadalacritty-9d42de6c7cc323cd5e8f3ad394c043f3b8432475.tar.gz
alacritty-9d42de6c7cc323cd5e8f3ad394c043f3b8432475.zip
Add option to open URLs on click
This adds the option to automatically launch URLs with a specified program when clicking on them. The config option `mouse.url_launcher` has been added to specify which program should be used to open the URL. The URL is always passed as the last parameter to the specified command. This fixes #113.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fcc55799..d7c437a8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,6 +51,7 @@ extern crate vte;
extern crate xdg;
extern crate base64;
extern crate terminfo;
+extern crate url;
#[macro_use]
pub mod macros;