update qutebrowser

This commit is contained in:
Felix Van der Jeugt 2016-08-08 12:03:18 +02:00
parent 8e94eeaeb8
commit 3d9cd0128d
3 changed files with 25 additions and 21 deletions

View File

@ -172,13 +172,13 @@ hint images tab
hint images tab-bg
,i
hint links fill ":open {hint-url}"
hint links fill :open {hint-url}
;o
hint links fill ":open -t {hint-url}"
hint links fill :open -t {hint-url}
;O
hint links fill ":open -b {hint-url}"
hint links fill :open -b {hint-url}
,o
hint links yank
@ -550,6 +550,9 @@ prompt-no
rl-complete-path
<tab>
prompt-open-download
<ctrl-x>
[command,prompt]
rl-backward-char
@ -581,6 +584,8 @@ rl-kill-word
rl-unix-word-rubout
<ctrl-w>
rl-backward-kill-word
<alt-backspace>
rl-yank

View File

@ -34,12 +34,7 @@
# smart: Search case-sensitively if there are capital chars
# Default: smart
#
# wrap-search (Bool):
# Whether to wrap finding text to the top when arriving at the end.
# Valid values: true, false
# Default: true
#
# startpage (List):
# startpage (List of String):
# The default page(s) to open at the start, separated by commas.
# Default: https://duckduckgo.com
#
@ -153,7 +148,6 @@
# Valid values: host, path, query, anchor
# Default: path,query
ignore-case = smart
wrap-search = true
startpage = https://calendar.google.com
default-page = ${startpage}
auto-search = naive
@ -176,7 +170,7 @@ url-incdec-segments = path,query
[ui]
# General options related to the user interface.
#
# zoom-levels (PercList):
# zoom-levels (List of Perc):
# The available zoom levels, separated by commas.
# Default:
# 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
@ -282,7 +276,7 @@ url-incdec-segments = path,query
# Valid values: true, false
# Default: false
#
# keyhint-blacklist (List):
# keyhint-blacklist (List of String):
# Keychains that shouldn't be shown in the keyhint dialog
# Globs are supported, so ';*' will blacklist all keychainsstarting
# with ';'. Use '*' to disable keyhints
@ -690,7 +684,7 @@ indicator-padding = 2,2,0,4
# http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
# Default:
#
# object-cache-capacities (WebKitBytesList):
# object-cache-capacities (List of WebKitBytes):
# The capacities for the global memory cache for dead objects such
# as stylesheets or scripts. Syntax: cacheMinDeadCapacity,
# cacheMaxDead, totalCapacity.
@ -843,7 +837,7 @@ cache-size = 52428800
# Valid values: true, false
# Default: true
#
# host-block-lists (UrlList):
# host-block-lists (List of Url):
# List of URLs of lists which contain hosts to block.
# The file can be in one of the following formats:
# - An '/etc/hosts'-like file
@ -858,7 +852,7 @@ cache-size = 52428800
# Valid values: true, false
# Default: true
#
# host-blocking-whitelist (List):
# host-blocking-whitelist (List of String):
# List of domains that should always be loaded, despite being
# ad-blocked.
# Domains may contain * and ? wildcards and are otherwise required
@ -947,12 +941,12 @@ enable-pdfjs = false
# successfulauto-follow.
# Default: 0
#
# next-regexes (RegexList):
# next-regexes (List of Regex):
# A comma-separated list of regexes to use for 'next' links.
# Default:
# \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
#
# prev-regexes (RegexList):
# prev-regexes (List of Regex):
# A comma-separated list of regexes to use for 'prev' links.
# Default: \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
#
@ -960,7 +954,7 @@ enable-pdfjs = false
# Which implementation to use to find elements to hint.
# javascript: Better but slower
# python: Slightly worse but faster
# Default: javascript
# Default: python
border = 1px solid #E3BE23
opacity = 0.7
mode = word
@ -1371,6 +1365,10 @@ keyhint.bg = rgba(0, 0, 0, 80%)
# Font used in the completion widget.
# Default: 8pt ${_monospace}
#
# completion.category (Font):
# Font used in the completion categories.
# Default: bold ${completion}
#
# tabbar (QtFont):
# Font used in the tab bar.
# Default: 8pt ${_monospace}
@ -1436,6 +1434,7 @@ keyhint.bg = rgba(0, 0, 0, 80%)
# Default: 8pt ${_monospace}
_monospace = Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
completion = 8pt ${_monospace}
completion.category = bold ${completion}
tabbar = 8pt ${_monospace}
statusbar = 8pt ${_monospace}
downloads = 8pt ${_monospace}

View File

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