summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2020-01-04 00:36:31 +0100
committerDaniel Carl <danielcarl@gmx.de>2020-01-04 00:46:59 +0100
commit71693a23e9c3904ed81b35125f0f97ddb2e5fea9 (patch)
treea65ecb6e740ebe8195720acfbdb3679dcc0ea562 /CHANGELOG.md
parent6b73a6fc16f1a01d246f4bf5732aea01fc7727bb (diff)
Remove expansion of '%' #584.
The % is often used in urls and in case of the x-hint-command those are feed to :shellcmd and will be replaced by current URL. This made the x-hint-command unusable on some search engines. The expansion of % to the current URL also required to give the current browser state to the expansion logic and to feed it to all callers of this too. This bloated the code. This patch removes the % expansion which was a redundant alternative to $VIMB_URI.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e21c33..04d152e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
+### Removed
+* Expansion of `%` to the current opened URI for `:shellcmd` was removed
+ because it breaks the `x-hint-command` with URIs containing '%'. But it is
+ still possible to use `$VIMB_URI` for the `:shellcmd` which has the same
+ effect.
## [3.6.0] - 2020-01-02
### Added