From c76d4479ee67d4e41c5afcfde80f172b73d5d283 Mon Sep 17 00:00:00 2001 From: Xitian9 Date: Fri, 15 Apr 2016 18:50:42 +1000 Subject: [PATCH] Open command line urls explicitly. --- qutebrowser/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index b22d3b8eb..13f2597c8 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -282,7 +282,8 @@ def process_pos_args(args, via_ipc=False, cwd=None, target_arg=None): "{}".format(cmd, e)) else: background = open_target in ('tab-bg', 'tab-bg-silent') - tabbed_browser.tabopen(url, background=background) + tabbed_browser.tabopen(url, background=background, + explicit=True) def _open_startpage(win_id=None):