summaryrefslogtreecommitdiff
path: root/init.php
blob: ce92234cbbfa2571bdf6814c7175df892778f257 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
class GoogleReaderKeys extends Plugin {
	private $host;

	function about() {
		return array(1.0,
			"Keyboard hotkeys emulate Google Reader",
			"markwaters");
	}

	function init($host) {
		$this->host = $host;

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

	function hook_hotkey_map($hotkeys) {

		$hotkeys["j"]		= "next_article_noscroll";
		$hotkeys["k"]		= "prev_article_noscroll";
		$hotkeys["J"]		= "next_unread_feed";
		$hotkeys["K"]		= "prev_unread_feed";
		$hotkeys["N"]		= "next_feed";
		$hotkeys["P"]		= "prev_feed";
		$hotkeys["v"]		= "open_in_new_window";
		$hotkeys["r"]		= "feed_refresh";
		$hotkeys["m"]		= "toggle_unread";
		$hotkeys["o"]		= "toggle_expand";
		$hotkeys["\r|Enter"]	= "toggle_expand";
		$hotkeys["?"]		= "help_dialog";
		$hotkeys[" |Space"]	= "next_article";
		$hotkeys["(38)|Up"]	= "article_scroll_up";
		$hotkeys["(40)|Down"]	= "article_scroll_down";

		return $hotkeys;
	}

	function api_version() {
		return 2;
	}

}