Earlier quoted context omitted.
On tangent, it's strange that our keyboards mostly stayed the same while the screens got around x20 better. I often need to make bigger and smaller jumps with keyboard. In Sublime I use a plug-in that can jump 10 lines up and down but I also need that functionality across the rest of OS. For navigating menus, scrolling through content, moving around spreadsheet. Page up/down is too large jump with the amount of conte…
Yeah, 10 line jumps are awesome when coding. In emacs I bind this behaviour to the ctrl-up and ctrl-down like so: (global-set-key [C-down] '(lambda () (interactive) (next-line 10) )) (global-set-key [C-up] '(lambda () (interactive) (previous-line 10) ))
I probably need a scriptable keyboard to make it work across all programs. Some keyboards support Lua, but I think it's only for LED patterns which is pretty retarded.