upgrade qutebrowser

This commit is contained in:
Felix Van der Jeugt 2016-04-29 09:47:12 +02:00
parent 8fb42b309d
commit faeb0a3ae7
3 changed files with 23 additions and 3 deletions

View File

@ -428,6 +428,21 @@ spawn youtube-viewer {url}
hint links spawn youtube-viewer {hint-url}
;x
open -w
<Ctrl-N>
enter-mode set_mark
`
enter-mode jump_mark
'
yank -p
yp
yank -ps
yP
[insert]
# Keybindings for insert mode.
# Since normal keypresses are passed through, only special keys are

View File

@ -347,6 +347,10 @@ hide-wayland-decoration = false
# Whether to try to pre-fetch DNS entries to speed up browsing.
# Valid values: true, false
# Default: true
#
# custom-headers (HeaderDict):
# Set custom headers for qutebrowser HTTP requests.
# Default:
do-not-track = true
accept-language = en-US,en
referer-header = same-domain
@ -355,6 +359,7 @@ proxy = system
proxy-dns-requests = true
ssl-strict = ask
dns-prefetch = true
custom-headers =
[completion]
# Options related to completion and command history.

View File

@ -1,10 +1,10 @@
#!/usr/bin/python3.4
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.0','gui_scripts','qutebrowser'
__requires__ = 'qutebrowser==0.6.0'
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.1','gui_scripts','qutebrowser'
__requires__ = 'qutebrowser==0.6.1'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('qutebrowser==0.6.0', 'gui_scripts', 'qutebrowser')()
load_entry_point('qutebrowser==0.6.1', 'gui_scripts', 'qutebrowser')()
)