From 79eece8fd06288b6f0170488a8be7ab5df800861 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 2 Sep 2018 18:27:30 +0200 Subject: [PATCH] Completely undo older changes --- qutebrowser/browser/qutescheme.py | 3 +-- qutebrowser/config/configdata.yml | 22 ++++++++++------------ 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/qutebrowser/browser/qutescheme.py b/qutebrowser/browser/qutescheme.py index 647cbe559..ee33d7897 100644 --- a/qutebrowser/browser/qutescheme.py +++ b/qutebrowser/browser/qutescheme.py @@ -251,8 +251,7 @@ def history_data(start_time, offset=None): return [{"url": e.url, "title": html.escape(e.title) or html.escape(e.url), - "time": e.atime} - for e in entries] + "time": e.atime} for e in entries] @add_handler('history') diff --git a/qutebrowser/config/configdata.yml b/qutebrowser/config/configdata.yml index de04e744e..6e395c734 100644 --- a/qutebrowser/config/configdata.yml +++ b/qutebrowser/config/configdata.yml @@ -23,6 +23,16 @@ confirm_quit: default: [never] desc: Require a confirmation before quitting the application. +history_gap_interval: + type: Int + default: 30 + desc: >- + Maximum time (in minutes) between two history items for them to be + considered being from the same browsing session. + + Items with less time between them are grouped when being displayed in + `:history`. Use -1 to disable separation. + ignore_case: renamed: search.ignore_case @@ -1059,18 +1069,6 @@ hints.uppercase: type: Bool desc: Make characters in hint strings uppercase. -## history - -history_gap_interval: - type: Int - default: 30 - desc: >- - Maximum time (in minutes) between two history items for them to be - considered being from the same browsing session. - - Items with less time between them are grouped when being displayed in - `:history`. Use -1 to disable separation. - ## input input.escape_quits_reporter: