Keyboard Shortcuts
I think the world of keyboard shortcuts, less time leaving the keyboard is just more efficient. I realized at some point I should compile a list of my favorites so here it goes:
Chrome / Most Web Browsers / Electron based applications
Ctrl + Shift + t
re-opens a closed tabCtrl + t
opens a new tabCtrl + l
highlights the url bar for quick url typing/searchingCtrl + w
closes the current tabCtrl + Tab
cycles through tabs moving to the rightCtrl + Shift + Tab
cycles through tabs moving to the leftCtrl + Shift + r
empty cache and reloadCtrl + Mouse Scroll
zooms in and out of a page quickly
Chrome Extensions
I mean, is the internet even usable without an Adblocker?
This isn’t a Chrome extension but it sure is wonderful. Network wide adblocking reduces data usage and makes mobile browsing much, much better.
The best eye-saver I’ve found yet. A simple Alt + Shift + d
and your eye fatigue dips dramatically.
If you use Vim
its a nice little time saver. I mainly love the j
and k
scrolling so I don’t have to leave the keyboard, gg
and G
for top and bottom of the page are also useful.
Niche, but if you look at JSONs a lot it really helps visualize and navigate JSONs.
Linux Terminal
Ctrl + l
runs aclear
without adding anything to yourhistory
Ctrl + u
clears everything after the cursorCtrl + k
clears everything before the cursorCtrl + a
takes you to the beginning of the lineCtrl + e
takes you to the end of the line!!
runs previous command likesudo !!
Vim
:G
takes you to the end of the file:gg
takes you to the beginning of the fileY
copies a line andp
pastes itdd
deletes a line/
searches and#
cycles through same named terms
Visual Studio Code
Ctrl + Shift + p
to quickly open the command palleteCtrl + `
to open the integrated terminalCtrl + Shift + 5
to split the terminal viewAlt + z
to toggle world wrap- Most all
Chrome
shortcuts work here, as VSCode isElectron
based