diff --git a/config/qutebrowser/keys.conf b/config/qutebrowser/keys.conf index 22f2201..f7b52cd 100644 --- a/config/qutebrowser/keys.conf +++ b/config/qutebrowser/keys.conf @@ -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 +prompt-open-download + + [command,prompt] rl-backward-char @@ -581,6 +584,8 @@ rl-kill-word rl-unix-word-rubout + +rl-backward-kill-word rl-yank diff --git a/config/qutebrowser/qutebrowser.conf b/config/qutebrowser/qutebrowser.conf index 818dc62..059102a 100644 --- a/config/qutebrowser/qutebrowser.conf +++ b/config/qutebrowser/qutebrowser.conf @@ -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} diff --git a/local/bin/qutebrowser b/local/bin/qutebrowser index ac652bc..ad34458 100755 --- a/local/bin/qutebrowser +++ b/local/bin/qutebrowser @@ -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')() )