Completely undo older changes

This commit is contained in:
Florian Bruhin 2018-09-02 18:27:30 +02:00
parent 87a4b1d662
commit 79eece8fd0
2 changed files with 11 additions and 14 deletions

View File

@ -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')

View File

@ -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: