April 25, 2020

Efficient Text Navigation on macOS

A while back I noticed my wife using the trackpad on her MacBook Air to select text and felt this inner little nerd know-it-all poke my brain. And so the idea for this blog post was born.

I cannot remember when or how I learned these tricks. Probably as an accident when I was learning HTML as a ten year old, writing all caps tags.

Anyway, I’ve been thinking about jotting down these tips for a long time, so here we go. Most of these can be applied to all textfields in the entire OS, and most (all?) will also work on iOS with a hardware keyboard. Some apps might behave slightly differently, it’s a great tell when an app is not using native AppKit components.

Modifier Keys

We all know how to use our trusty arrow keys to move the cursor horizontally and vertically in a text view. But something not everybody knows is that you can hold down modifier keys while doing this to change what happens when you press an arrow key.

These are:

  • option/alt/, use to move a “word” when navigating sideways and a paragraph when moving vertically. When moving to the left the cursor stops at the start of words (in a LTR language at least), and conversely moving to the right will stop at the end of a word. Different apps or contexts might treat a “word” differently.1
  • command/cmd/ to move to beginning or end of a line, or up/down to move to the start or end of a document.

These commands are not really unique to text input. In Safari for example you can type ⌘↓ to move to the end of a page. Or to move to the top of the page.

Furthermore control/ctrl can be used to move between camelCasedWords. But as macOS comes with these key combinations hooked up to Spaces navigation by default they’re not that useful. For coders it can be useful to disable those keyboard shortcuts. But for most other people they’re not that useful from a text input perspective.

Deleting Text

Now, these modifier keys can be used for more than moving around. They can also be used to delete text more efficiently. Instead of holding down that backspace for a couple of seconds to remove an entire line, try ⌘⌫ to delete it in one keystroke!

Selecting Text

Taking things even further you can apply the shift/ modifier to select text as you’re navigating around. ⇧⌘← will select everything from the cursor to the end of the line for example. Or ⎇← selects from the cursor and back one word. You can combine these. As long as there’s text selected you can extend or shrink the selection a word or line at a time. Letting go of all modifiers but shift let’s you select just a character at a time.

Conclusion

Using the text input modifiers can greatly increase your text input speed when typing text on your computer.

I’d suggest taking some time internalizing these tips to reduce the amount of times you reach for the mouse or trackpad to select text!

It can be very hard to retrain yourself if you’ve spent years writing on a computer and always reach for the mouse to select text or move around in a document. Perhaps this tweet by Sam Soffes is helpful:

Happy typing!


If you’re still reading and found this article useful it’d mean a great deal to me if you wanted to check out the app I’m working on. It’s called Plantry and it’ll help you cook better food at home! Thanks :)


  1. Xcode is frustratingly inconsistent in this and always moves way further than I think it should… ↩︎