1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:06:02 +00:00

add hotkey "\" to cancel current search

This commit is contained in:
Andrew Dolgov
2020-05-09 07:56:06 +03:00
parent c8243b03c9
commit 2558fcbe21
2 changed files with 6 additions and 1 deletions

View File

@@ -305,6 +305,9 @@ require(["dojo/_base/kernel",
this.hotkey_actions["search_dialog"] = function () {
Feeds.search();
};
this.hotkey_actions["cancel_search"] = function () {
Feeds.cancelSearch();
};
this.hotkey_actions["toggle_mark"] = function () {
Headlines.selectionToggleMarked();
};