diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-10-03 03:15:01 +0200 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2018-10-03 03:23:12 +0200 |
commit | 958a4326a2615c0a486a6ef450729625a97b9118 (patch) | |
tree | a99aed732784717eaf43029074cbb98c17589271 /alacritty.yml | |
parent | 078f91b162d099634700478eb08c9eab85a03ba2 (diff) | |
download | alacritty-958a4326a2615c0a486a6ef450729625a97b9118.tar.gz alacritty-958a4326a2615c0a486a6ef450729625a97b9118.zip |
Change default URL launchers
The default configuration has been altered to use `xdg-open` to launch
URLs on linux and `open` to do so on macOS. This should allow clicking
on links by default on most systems.
Some changes which were made to the reverse grid iterator have also been
reverted.
Alacritty also doesn't crash anymore when the program specified as
`url_launcher` isn't installed on the system. Instead it will print a
warning to the log.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/alacritty.yml b/alacritty.yml index a0765b12..5a841263 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -263,10 +263,7 @@ 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. - #url_launcher: - # program: /usr/bin/firefox - # args: - # - --new-tab + url_launcher: xdg-open selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" |