summaryrefslogtreecommitdiff
path: root/plugins/hotkeys_noscroll/init.php
blob: cc734941f5c1392c1c7a51cbd82d3989485b8c76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
class Hotkeys_Noscroll extends Plugin {
	function about() {
		return array(null,
			"n/p (and up/down) hotkeys move between articles without scrolling",
			"fox");
	}

	function init($host) {
		$host->add_hook($host::HOOK_HOTKEY_MAP, $this);
	}

	function hook_hotkey_map($hotkeys) {

		$hotkeys["(40)|Down"] = "next_article_noscroll";
		$hotkeys["(38)|Up"] = "prev_article_noscroll";
		$hotkeys["n"] = "next_article_noscroll";
		$hotkeys["p"] = "prev_article_noscroll";

		return $hotkeys;
	}

	function api_version() {
		return 2;
	}

}