Merge branch 'master' of https://github.com/LadyClaire/qutebrowser into LadyClaire-master

This commit is contained in:
Florian Bruhin 2016-07-29 09:04:52 +02:00
commit 943cd6ff48
2 changed files with 14 additions and 6 deletions

View File

@ -249,12 +249,15 @@ class CommandDispatcher:
"set!")
else:
try:
url = urlutils.fuzzy_url(url)
except urlutils.InvalidUrlError as e:
# We don't use cmdexc.CommandError here as this can be called
# async from edit_url
message.error(self._win_id, str(e))
return
url = objreg.get('quickmark-manager').get(url)
except urlmarks.Error:
try:
url = urlutils.fuzzy_url(url)
except urlutils.InvalidUrlError as e:
# We don't use cmdexc.CommandError here as this can be
# called async from edit_url
message.error(self._win_id, str(e))
return
if tab or bg or window:
self._open(url, tab, bg, window)
else:

View File

@ -103,3 +103,8 @@ Feature: Opening pages
history:
- active: true
url: http://localhost:*/data/numbers/7.txt
Scenario: Opening a quickmark
When I run :quickmark-add http://localhost:(port)/data/numbers/8.txt quickmarktest
And I run :open quickmarktest
Then data/numbers/8.txt should be loaded