From 1843301a7ea73fb6721c666726ae16654e076364 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 9 May 2014 13:12:24 +0200 Subject: [PATCH] Add keybinding for save --- TODO | 3 --- qutebrowser/config/configdata.py | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/TODO b/TODO index 682340bfa..84828b64b 100644 --- a/TODO +++ b/TODO @@ -386,9 +386,6 @@ Reload tab n or current tab if n is omitted without using any cached data (comma [n]= Zoom to n percent or to 100% if n is omitted(command zoom, aliases: z). -sf -Save all configuration files (command save). - ZZ Save current session and exit (command save_session, aliases: wq). diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 1267ecb24..619f4903c 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -589,6 +589,7 @@ DATA = OrderedDict([ ('pP', 'paste sel'), ('Pp', 'tabpaste'), ('PP', 'tabpaste sel'), + ('sf', 'save'), ('-', 'zoomout'), ('+', 'zoomin'), ('[[', 'prevpage'),