upgrade qutebrowser
This commit is contained in:
parent
8fb42b309d
commit
faeb0a3ae7
@ -428,6 +428,21 @@ spawn youtube-viewer {url}
|
|||||||
hint links spawn youtube-viewer {hint-url}
|
hint links spawn youtube-viewer {hint-url}
|
||||||
;x
|
;x
|
||||||
|
|
||||||
|
open -w
|
||||||
|
<Ctrl-N>
|
||||||
|
|
||||||
|
enter-mode set_mark
|
||||||
|
`
|
||||||
|
|
||||||
|
enter-mode jump_mark
|
||||||
|
'
|
||||||
|
|
||||||
|
yank -p
|
||||||
|
yp
|
||||||
|
|
||||||
|
yank -ps
|
||||||
|
yP
|
||||||
|
|
||||||
[insert]
|
[insert]
|
||||||
# Keybindings for insert mode.
|
# Keybindings for insert mode.
|
||||||
# Since normal keypresses are passed through, only special keys are
|
# Since normal keypresses are passed through, only special keys are
|
||||||
|
@ -347,6 +347,10 @@ hide-wayland-decoration = false
|
|||||||
# Whether to try to pre-fetch DNS entries to speed up browsing.
|
# Whether to try to pre-fetch DNS entries to speed up browsing.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: true
|
# Default: true
|
||||||
|
#
|
||||||
|
# custom-headers (HeaderDict):
|
||||||
|
# Set custom headers for qutebrowser HTTP requests.
|
||||||
|
# Default:
|
||||||
do-not-track = true
|
do-not-track = true
|
||||||
accept-language = en-US,en
|
accept-language = en-US,en
|
||||||
referer-header = same-domain
|
referer-header = same-domain
|
||||||
@ -355,6 +359,7 @@ proxy = system
|
|||||||
proxy-dns-requests = true
|
proxy-dns-requests = true
|
||||||
ssl-strict = ask
|
ssl-strict = ask
|
||||||
dns-prefetch = true
|
dns-prefetch = true
|
||||||
|
custom-headers =
|
||||||
|
|
||||||
[completion]
|
[completion]
|
||||||
# Options related to completion and command history.
|
# Options related to completion and command history.
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/python3.4
|
#!/usr/bin/python3.4
|
||||||
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.0','gui_scripts','qutebrowser'
|
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.1','gui_scripts','qutebrowser'
|
||||||
__requires__ = 'qutebrowser==0.6.0'
|
__requires__ = 'qutebrowser==0.6.1'
|
||||||
import sys
|
import sys
|
||||||
from pkg_resources import load_entry_point
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(
|
sys.exit(
|
||||||
load_entry_point('qutebrowser==0.6.0', 'gui_scripts', 'qutebrowser')()
|
load_entry_point('qutebrowser==0.6.1', 'gui_scripts', 'qutebrowser')()
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user