summaryrefslogtreecommitdiff
path: root/plugins/googlereaderkeys
AgeCommit message (Collapse)Author
2019-03-17Fix missed hotkeys in googlereaderkeys pluginMichael Kuhn
2019-03-11Refactor hotkeys to use keypress instead of keydownMichael Kuhn
keydown returns the "raw" key in event.which. Depending on the keyboard layout, this may not be what is wanted. For example, on a German keyboard, Shift+7 has to be pressed to get a slash. However, event.which will be 55, which corresponds to "7". In the keypress event, however, event.which will be 47, which corresponds to "/". Sadly, several important keys (such as escape and the arrow keys) do not trigger a keypress event. Therefore, they have to be handled using a keydown event. This change refactors the hotkey support to make use of keypress events whenever possible. This will make hotkeys work regardless of the user's keyboard layout. Escape and arrow keys are still handled via keydown events. There should be only one change in behavior: I could not make Ctrl+/ work and therefore rebound the help dialog to "?".
2017-04-26update phpmd ruleset to use (subset) of cleancodeAndrew Dolgov
fix various minor issues reported by static analysis remove redundant php closing tag from several more files
2013-05-19googlereaderkeys: add o/enter/? keys like Google ReaderMike Frysinger
2013-04-19plugins: bump API versionAndrew Dolgov
2013-04-17remove $linkAndrew Dolgov
2013-03-22Modify googlereaderkeys plugin with mark unread toggle.Mike Stegeman
2013-03-18tweak hotkey map notation to allow stuff like shift-arrowsAndrew Dolgov
2013-03-16Added requested article_scroll_up and article_scroll_down keys.Mark Waters
2013-03-12add plugins/googlereaderkeysAndrew Dolgov