summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-05 10:19:59 +0100
committerAndrew Dolgov <[email protected]>2006-12-05 10:19:59 +0100
commite46cdbb0ddcc1832453b58e46db64f80442fe4e4 (patch)
treea5af98b733ec3a24b71e8f6d39e8e3ab6447f27a /functions.js
parent729bafaa14466bec1f65caee2dfc3c0638b20f52 (diff)
new hotkey: shift-E - edit current feed
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 6512d6adc..383163f0a 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);