From a4556a956e609f8280bf782719c7128302dfd2e5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 9 May 2014 13:14:31 +0200 Subject: [PATCH] Add bindings for ss/sl/sk (set/set_temp/set keybind) --- TODO | 9 --------- qutebrowser/config/configdata.py | 3 +++ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/TODO b/TODO index 84828b64b..56223616e 100644 --- a/TODO +++ b/TODO @@ -398,15 +398,6 @@ Toggle "view source" (command view_source, aliases: source, so). gs Add a searchengine. Textfields can be chosen with tab and a keyword must be specified. The first defined searchengine will be the default searchengine. The keyword can be used in all open commands, e.g. :open (command save_search_field, aliases: search). -ss -Set setting, the interactive version of the command set, for changing settings in scripts use set instead (command set_setting). - -sl -Set local setting, changes a setting but doesn’t save the setting to configuration file. The interactive version of the command local_set, for changing settings locally in scripts use local_set instead (command set_local_setting). - -sk -Set keyboard shortcut (command set_key, aliases: keys). - C-p Toggle proxy (command proxy). diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 619f4903c..29cd7434d 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -590,6 +590,9 @@ DATA = OrderedDict([ ('Pp', 'tabpaste'), ('PP', 'tabpaste sel'), ('sf', 'save'), + ('ss', 'set'), + ('sl', 'set_temp'), + ('sk', 'set keybind'), ('-', 'zoomout'), ('+', 'zoomin'), ('[[', 'prevpage'),