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...
|
Blarg! It's simple: use C-x r t |
|||||||||||||
|
|
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. |
|||||||||||
|
|
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 |
|||
|
|
|
You can use the following commands (and keys) to accomplish this:
Here is a complete description of those features: http://www.gnu.org/software/emacs/manual/html_node/emacs/Rectangles.html |
|||
|
|
|
you should try this : https://github.com/magnars/mark-multiple.el |
|||||||||||
|
|
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. |
|||
|
|
|
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:
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. |
|||
|
|
Rectangles are for simple stuff like deleting the same amount of spaces in adjacent lines. Otherwise keyboard macros are the way to go. |
|||
|
|