diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-01-03 21:04:54 +0100 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-01-05 20:49:39 +0000 |
commit | fbefd804c8785caa058d512a95a8e41a21c69435 (patch) | |
tree | b83883fd2dd93820fef0a9ee5f44a12d8e40103d /CHANGELOG.md | |
parent | dd8639b6cc5d635d2826a05b7449c2a10d4af4c3 (diff) | |
download | alacritty-fbefd804c8785caa058d512a95a8e41a21c69435.tar.gz alacritty-fbefd804c8785caa058d512a95a8e41a21c69435.zip |
Fix removal of trailing URL characters
Some characters were not correctly stripped from the end of URLs with
the URL launching feature. The list of URL separator characters has been
extended to include '<', '>', '"', ' ', '{', '}', '|', '\\', '^' and
'`', following the URL specification defined here:
https://tools.ietf.org/html/rfc3987#page-13
Additionally, a list of characters which are always stripped from the
end of URLs has been setup to contain '.', ',', ';', ':', '?', '!', and
'/'.
This fixes #1753.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 25175656..30d3a483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed rendering non default mouse cursors in terminal mouse mode (linux) - Fix the `Copy` `mouse_bindings` action ([#1963](https://github.com/jwilm/alacritty/issues/1963)) - URLs are only launched when left-clicking +- Removal of extra characters (like `,`) at the end of URLs has been improved ## Version 0.2.4 |