diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-02-03 16:44:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 16:44:39 +0000 |
commit | 20f319860908c2fa86bba25bb1e7bf8ba1a464e1 (patch) | |
tree | 3ea38a62a60692d5329d1e53d573928390d57a73 /alacritty.yml | |
parent | 53e491709d75477f8efe181315fe9301c6e845ba (diff) | |
download | alacritty-20f319860908c2fa86bba25bb1e7bf8ba1a464e1.tar.gz alacritty-20f319860908c2fa86bba25bb1e7bf8ba1a464e1.zip |
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.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |