--open --> --new

This commit is contained in:
Max 2022-08-22 20:07:45 +06:00
parent 81ff5abbfe
commit 6e6083caf2
1 changed files with 2 additions and 2 deletions

View File

@ -932,7 +932,7 @@ class CommandDispatcher:
maxsplit=0) maxsplit=0)
@cmdutils.argument('index', completion=miscmodels.tabs) @cmdutils.argument('index', completion=miscmodels.tabs)
@cmdutils.argument('count', value=cmdutils.Value.count) @cmdutils.argument('count', value=cmdutils.Value.count)
def tab_select(self, index=None, open=False, count=None): def tab_select(self, index=None, new=False, count=None):
"""Select tab by index or url/title best match. """Select tab by index or url/title best match.
Focuses window if necessary when index is given. If both index and Focuses window if necessary when index is given. If both index and
@ -957,7 +957,7 @@ class CommandDispatcher:
try: try:
tabbed_browser, tab = self._resolve_tab_index(index) tabbed_browser, tab = self._resolve_tab_index(index)
except cmdutils.CommandError: except cmdutils.CommandError:
if open: if new:
self.openurl(index, tab=True) self.openurl(index, tab=True)
return return
raise raise