summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index b5cf29b26..26f3f4bfb 100644
--- a/functions.js
+++ b/functions.js
@@ -237,6 +237,18 @@ function hotkey_handler(e) {
debug_mode_enabled = !debug_mode_enabled;
}
+ if (keycode == 190 && shift_key) { // >
+ viewFeedGoPage(1);
+ }
+
+ if (keycode == 188 && shift_key) { // <
+ viewFeedGoPage(-1);
+ }
+
+ if (keycode == 191 && shift_key) { // ?
+ viewFeedGoPage(0);
+ }
+
if (keycode == 69 && shift_key) {
return editFeedDlg(getActiveFeedId());
}