The "back to top" functionality is so useful in web pages. I wish they would make a dedicated button on keyboards that just takes you to the top of the page. Better yet, it can work in other apps too! It could, for example, take you to the beginning of a line when you're writing text. Edit: Wow, I thought I was going the extra mile to make the joke obvious by saying the key should also take you to the beginning of a…
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…
(global-set-key [C-down] '(lambda () (interactive) (next-line 10) ))
(global-set-key [C-up] '(lambda () (interactive) (previous-line 10) ))