From 20f319860908c2fa86bba25bb1e7bf8ba1a464e1 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 3 Feb 2019 16:44:39 +0000 Subject: Fix regression in the URL launcher config Due to the merging of configuration files on all platforms, it has been made impossible to completely disable URL launching without still executing some kind of program like `true`. Setting the launcher to `None` in the config, will now disable it completely. This fixes #2058. --- alacritty.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alacritty.yml') diff --git a/alacritty.yml b/alacritty.yml index 5cf58d25..07120b7a 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -291,6 +291,8 @@ mouse: # This program is executed when clicking on a text which is recognized as a URL. # The URL is always added to the command as the last parameter. # + # When set to `None`, URL launching will be disabled completely. + # # Default: # - (macOS) open # - (Linux) xdg-open -- cgit