From: Andrew Dolgov Date: Tue, 5 Dec 2006 09:19:59 +0000 (+0100) Subject: new hotkey: shift-E - edit current feed X-Git-Tag: 1.2.6~32 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e46cdbb0ddcc1832453b58e46db64f80442fe4e4;p=tt-rss.git new hotkey: shift-E - edit current feed --- diff --git a/functions.js b/functions.js index 6512d6ad..383163f0 100644 --- a/functions.js +++ b/functions.js @@ -237,6 +237,10 @@ function hotkey_handler(e) { debug_mode_enabled = !debug_mode_enabled; } + if (keycode == 69 && shift_key) { + return editFeedDlg(getActiveFeedId()); + } + if (typeof localHotkeyHandler != 'undefined') { try { return localHotkeyHandler(e);