Site Overlay

Quick win – Cycle spacing in Emacs to quickly remove whitespace

When working on a piece of code it very common that you reformat it several times. You split lines that are too long into multiple lines. Refactoring of some parts makes the code shorter, and so on. Whenever you combine two lines into one you usually get a bunch of spaces between the end of the original line and the beginning of the line you added to it. How much depends on the amount of indentation of the added line. To quickly and easily clean up that mess there a nifty function in Emacs. It’s called cycle-spacing and it will remove all spaces except one between two characters. Try it out by running M-x cycle-spacing.

While I mostly use the command to contract blocks of spaces into a single one cycle-spacing can do more than that. The first time you run the command it contracts all spaces into a single one. The second time it removes all spaces, and the third time it restores the original spacing. By binding it to a convenient keyboard shortcut (I use C-S-SPC) you can quickly wrangle the text into shape.

Quick win - Cycle spacing in Emacs to quickly remove whitespace

To bind the command to a shortcut of your choice, put the following in your .emacs.d/init.el or .emacs file: (global-set-key (kbd "<key sequence, in my case: C-S-SPC>") 'cycle-spacing).

For more nifty tricks in Emacs check out Emacs nifty tricks.

Leave a Reply

Your email address will not be published.