Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I believe textmate has a mode where if you start typing, the same thing will be entered on all the lines you've selected. Is there something similar to this in emacs? I'm guessing there's a way rectangles can help me, but I'm not sure how...

share|improve this question

8 Answers

up vote 26 down vote accepted

Blarg! It's simple: use C-x r t

share|improve this answer
Chad, thanks for the correction. Now a really feel dumb ;). – allyourcode Apr 18 '09 at 17:08
1  
This is great but not very useful to someone completely new to emacs, can you help me decipher this please? – cone Mar 1 '12 at 8:40
1  
@cone You should read the built-in emacs tutorial. It explains how to read the hieroglyphics ;). To up the tutorial while in emacs, hit 'h' while holding the ctrl key. Then, hit 't' (for "tutorial). – allyourcode Apr 8 '12 at 23:50
I have C-x mapped to cut (cua-mode), so this is not a good idea. – mefiX Mar 21 at 11:49

One of the solutions is using CUA mode. Activate cua mode with M-x cua-mode, select rectangle regin: first press C-Enter then move cursor with standard movement commands to make selection, now pressing enter at any time will cycle cursor through corners of the rectangle enabling you to prepend or append text to the selection.

share|improve this answer
Thanks, boskom. I'm using version 21.3.1, so this mode doesn't seem to be installed. I probably won't install it, because I'm finding that I like C-x r t. – allyourcode Apr 18 '09 at 17:01
1  
thanks! i just thought cua mode was for people who didn't want to learn emacs copy n paste bindings :P This is awesome! – rflood89 May 9 '12 at 11:34
1  
If you use cua-selection-mode instead of cua-mode, you won't get the unwanted cut/copy/paste bindings. You will get some other functionality that you might not want, though (most notably, editing commands replacing the region). – phils Aug 25 '12 at 9:15

You absolutely need to try installing multiple cursors:

https://github.com/magnars/multiple-cursors.el

It's in marmalade and melpa so just:

M-x package-install multiple-cursors
share|improve this answer

You can use the following commands (and keys) to accomplish this:

  • open-rectangle (C-x, r, o) add spaces
  • kill-rectangle (C-x, r, k) delete
  • clear-rectangle (C-x, r, c) replace with spaces
  • M-x string-insert-rectangle fill with specified text

Here is a complete description of those features: http://www.gnu.org/software/emacs/manual/html_node/emacs/Rectangles.html

share|improve this answer

you should try this : https://github.com/magnars/mark-multiple.el

demo: http://www.youtube.com/watch?v=r2o9HYi7DOY

share|improve this answer
5  
If you re-read the help notes for that you'll see that, since it was originally posted, it's been superseded by multiple-cursors.el – phils Aug 25 '12 at 9:13
1  
Yeah, @phils, multiple-cursors.el is awesome. – whunmr Aug 25 '12 at 9:34
While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Aug 25 '12 at 13:57

I believe you are looking for the cua-mode that was suggested by boskom. http://www.vimeo.com/1168225?pg=embed&sec=1168225 this screencast might give you an idea of how to use this.

share|improve this answer
Thank you for the link! A picture says a thousand words :). – allyourcode Apr 18 '09 at 16:58

The answers show above are for inserting text in columns. TextMate's "Edit Each Line in Selection" inserts the same text in each line regardless of the length of each lines. I'm learning Lisp now, so as an exercise I wrote a function to do this:

(defun append-to-lines (text-to-be-inserted)
  ;;Appends text to each line in region
  (interactive "sEnter text to append: ")
  (save-excursion
    (let (point-ln mark-ln initial-ln final-ln count)
      (barf-if-buffer-read-only)
      (setq point-ln (line-number-at-pos))
      (exchange-point-and-mark)
      (setq mark-ln (line-number-at-pos))
      (if (< point-ln mark-ln)
          (progn (setq initial-ln point-ln final-ln mark-ln)
                 (exchange-point-and-mark))
        (setq initial-ln mark-ln final-ln point-ln))
      (setq count initial-ln)
      (while (<= count final-ln)
        (progn (move-end-of-line 1)
               (insert text-to-be-inserted)
               (next-line)
               (setq count (1+ count))))
      (message "From line %d to line %d." initial-ln final-ln ))))

You first make a selection that includes all the lines you want to affect and then run the function with M-x append-to-lines.

share|improve this answer
I haven't tested this out, but nice work. I was more interested in the "add the same text to the same column" approach, but I'm sure this would come in handy as well. – allyourcode Apr 22 '09 at 9:49

Rectangles are for simple stuff like deleting the same amount of spaces in adjacent lines.

Otherwise keyboard macros are the way to go.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.