From: Andrew Dolgov Date: Tue, 12 Mar 2013 07:35:41 +0000 (+0400) Subject: add plugins/googlereaderkeys X-Git-Tag: 1.7.3~13 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3afc03b5308ab93e811fdeca6fd2a3c54ac8bbd8;p=tt-rss.git add plugins/googlereaderkeys --- diff --git a/plugins/googlereaderkeys/init.php b/plugins/googlereaderkeys/init.php new file mode 100644 index 00000000..76958190 --- /dev/null +++ b/plugins/googlereaderkeys/init.php @@ -0,0 +1,34 @@ +link = $host->get_link(); + $this->host = $host; + + $host->add_hook($host::HOOK_HOTKEY_MAP, $this); + } + + function hook_hotkey_map($hotkeys) { + + $hotkeys["j"] = "next_article_noscroll"; + $hotkeys["N"] = "next_feed"; + $hotkeys["k"] = "prev_article_noscroll"; + $hotkeys["P"] = "prev_feed"; + $hotkeys["v"] = "open_in_new_window"; + $hotkeys["(32)|space"] = "next_article"; + $hotkeys["r"] = "feed_refresh"; + + return $hotkeys; + + } +} +?>