summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-12-05 17:00:02 +0300
committerAndrew Dolgov <[email protected]>2019-12-05 17:00:17 +0300
commit1902a7dcb0d4b0fc00a1c2ed86f4b8ab757f4508 (patch)
treefeded37649207e0867079a94b946fdb6ca9729b0 /include/functions.php
parentf30287be652295d18e632316a66866697c26638c (diff)
pgup/pgdown hotkey normalization:
- pgup/pgdown without modifier scroll headline buffer - shift+pgup/pgdown work similarly to shift+up/down but operating on pages
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/functions.php b/include/functions.php
index 18885b1ea..b4e91fe9c 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1114,14 +1114,16 @@
"j" => "prev_feed",
"n" => "next_article",
"p" => "prev_article",
+ "(33)|PageUp" => "prev_article_page",
+ "(34)|PageDown" => "next_article_page",
"(38)|Up" => "prev_article",
"(40)|Down" => "next_article",
"*(38)|Shift+Up" => "article_scroll_up",
"*(40)|Shift+Down" => "article_scroll_down",
"^(38)|Ctrl+Up" => "prev_article_noscroll",
"^(40)|Ctrl+Down" => "next_article_noscroll",
- "(33)|Page Up" => "article_page_up",
- "(34)|Page Down" => "article_page_down",
+ "^(33)|Shift+PageUp" => "article_page_up",
+ "^(34)|Shift+PageDown" => "article_page_down",
"/" => "search_dialog",
"s" => "toggle_mark",
"S" => "toggle_publ",