Set explicit=False for :navigate --tab

Related to #2624
This commit is contained in:
Anton Grensjö 2017-05-13 04:09:34 +02:00
parent 273749cce8
commit 47f391d38b
No known key found for this signature in database
GPG Key ID: 96210AEEC6414D63
2 changed files with 4 additions and 3 deletions

View File

@ -55,8 +55,9 @@ Changed
- The adblocker now also blocks non-GET requests (e.g. POST)
- `:follow-selected` now also works with QtWebEngine
- javascript: links can now be hinted
- :view-source and :tab-clone now don't open the tab as "explicit" anymore, i.e.
(with the default settings) open it next to the active tab.
- `:view-source`, `:tab-clone` and `:navigate --tab` now don't open the tab as
"explicit" anymore, i.e. (with the default settings) open it next to the
active tab.
Fixed
~~~~~

View File

@ -560,7 +560,7 @@ class CommandDispatcher:
tab=tab, background=bg, window=window)
elif where in ['up', 'increment', 'decrement']:
new_url = handlers[where](url, count)
self._open(new_url, tab, bg, window)
self._open(new_url, tab, bg, window, explicit=False)
else: # pragma: no cover
raise ValueError("Got called with invalid value {} for "
"`where'.".format(where))