How to do select column then do editing in GNU Emacs?

I've been using ViM, TextMate, and GNU Emacs for years.

For example here is the text I want to edit

foo
foo
foo

And here is the text result I want to have

bar foo
bar foo
bar foo

When I'm on Vim, I can do "Ctrl v" on the very first line and first column, then press "2 j", then press "i", then type "bar", done.

When I'm on Textmate, I can press "Apple Command Option" both while selecting down (by my mouse), then type "bar", done.

But when I'm on GNU Emacs 23.1, I don't know how to do it. :((

I searched EmacsWiki and googling around but didn't get the solution. Please guide me if you know my solution. Would be grateful for that.

1

5 Answers

Two options come to mind. The first is rectangles (as mentioned in another answer). The explicit directions for that are:

  1. goto first line, first column
  2. C-SPC
  3. goto last line (first column)
  4. C-x r t bar SPC RET

Another option, which provides very nice rectangle/column editing commands is CUA mode. Here's a blog post (disclosure: my blog) that describes how to use it. To see the power of CUA mode it's totally worth watching this three minute video.

I integrate CUA mode with the following (because I prefer not to have transient mark mode):

(setq cua-enable-cua-keys nil)
(setq cua-highlight-region-shift-only t) ;; no transient mark mode
(setq cua-toggle-set-mark nil) ;; original set-mark behavior, i.e. no transient-mark-mode
(cua-mode)

In Emacs-24.4, the base support for rectangles has been improved a bit, so instead of using C-SPC followed by C-x r t, you can do:

C-x SPC
down down
C-t bar RET

One of the nice thing about it compared to the the C-SPC method is that you'll get visual feedback about the rectangle you're selecting. Of course the cua-mode method works as well (and works similarly).

5

In emacs these kind of columns are referred to as 'rectangles'. So this is the relevant documentation page.

All these commands require that the region contains the the rectangle you are operating on. So you need to set the mark on the top left character in the rectangle and extend the region to the bottom right character in the rectangle. The command you're after is M-x string-insert-rectangle which then prompts you for the string to insert.

Shortest answer: Enable CUA rectangle mode via C-RET.

So, for your case, it would be

  1. Go to first line, first column and hit C-RET to enter CUA mode
  2. Go to last line, first column and simply type barSPC
  3. Exit CUA mode via ESC or C-G

See @Trey 's answer for a more elaborate solution and links to CUA.

1

You can use replace-regexp for this:

  1. set mark to the last line --> C SPC and go to the last line
  2. type M-x replace-regexp RET in minibuffer (i have a key binding for this M-r)
  3. Give ^ RET
  4. type bar and hit RET

This will add bar to the beginning of the line.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like