Keyboard binding
Closes #369 (closed)
Pressing .
keyboard button will show new status.
This is prototype of keyboard binding feature (#148).
Merge request reports
Activity
67 67 document.addEventListener('visibilitychange', this.handleVisibilityChange, false) 68 68 this.unfocused = document.hidden 69 69 } 70 window.addEventListener('keydown', this.handleShortKey) Got it, let me fix it. Thanks @hj
added 1 commit
- d032ce27 - Validate if there are any new status to show
feels a bit scary putting non-configurable always-on hotkeys that are being listened to at all times in the application. we currently do stuff like arrows, tab, esc, but only in very specific situations (text input, or with a modal open). I do agree that hotkeys are very useful and we'd want them, but we also don't want to step on the shoes of people who use browser plugins for keyboard navigation by not having ours configurable.
I agree that keybindings should be configurable. People using keyboard navigation (Sakakey, VimFX (yeah, rip)) can temporarily disable them. At least I do with websites with decent hotkeys (TT-RSS). Websites' hotkeys could interfere with extensions but I think most of them can suppress websites' hotkeys, at least sakakey does. Sakakey also fails to enter "ignore" mode correctly and still suppresses
esc
making it impossible to exit lighbox without putting site to blacklist.mentioned in commit 24f3770f
mentioned in issue #432 (closed)