Home

Use Cmd+K Terminal Trick to Stay Organized

Aside from opening new tabs, the Meta+k shortcut is the one I use most frequently when working on the command-line.

One of the shortcuts I use the most when working on the command line is Cmd+k, where Cmd is your meta key.

This shortcut clears the terminal screen and removes the ability to scroll up. That makes it effectively a new starting point, though it doesn't create a new session. And you can even use this shortcut while a command is in progress.

I typically use this shortcut when I want a new start. It then becomes trivial to find that point in time by scrolling up as far as possible. I often make use of this when restarting a development server.

Comparing Cmd+k to Ctrl+l

There's a related shortcut in Ctrl+l, which is more like running clear in the terminal. Here is a nice explanation of the difference between the two:

One difference is that Cmd+k clears the scrollback buffer as well as the screen. Ctrl+l only clears the screen, effectively moving what is on it "up" into the scrollback buffer.

Another difference is that Ctrl+L is performed by the process running inside Terminal. For instance, bash will clear the screen and redraw the prompt, including any unfinished command there. Other programs might not do anything, or might refresh the screen without clearing it.

Cmd+k, on the other hand, is performed by Terminal itself, regardless of what's running in the window, so it might hide the output from the program.

What are your favorite terminal shortcuts? Let's talk.

Let's Connect

Keep Reading

Keep Your CSS Files Organized

CSS files are notorious for very quickly growing long, jumbled and confusing. Here's how I stay organized

Jan 15, 2013

3 Ways to Add an Image to GitHub README

Images often come in handy alongside documentation. Here are a few methods for adding them to your README and other markdown files.

Jan 30, 2021

Deleted 3 Apps Thanks to Raycast

Raycast has boosted my productivity while also covering the offerings of three applications I was using.

Dec 09, 2022