do you know what is the easiest way to move selected region or line (if there is no selection) up or down in emacs? I'm looking for the same functionality as is in eclipse (bounded to M-up, M-down).
Thanks
|
do you know what is the easiest way to move selected region or line (if there is no selection) up or down in emacs? I'm looking for the same functionality as is in eclipse (bounded to M-up, M-down). Thanks |
|||||||||||||||||
|
|
A line can be moved using transpose-lines bound to I found this elisp snippet that does what you want, except you need to change the bindings. |
||||
|
|
|
Update: Install the Here's what I use, which works on both regions and individual lines:
|
|||||||||||
|
|
There's no built-in. You can use transpose-lines (C-x C-t) but you cannot use it repeatedly. Look at the functions on http://www.schuerig.de/michael/blog/index.php/2009/01/16/line-movement-for-emacs/. It should be easy to adapt that to regions, too. |
|||||||
|
|
The You might also want to have a look to the transpose section in the Emacs manual. Essentially:
|
||||
|
|
|
I have written a couple of interactive functions for moving lines up/down:
The keybindings are IntelliJ IDEA style, but you can use anything you want. I should probably implement some functions that operate on regions as well. |
|||
|
|
|
There is an entry in the emacs wiki just for this: http://www.emacswiki.org/emacs/MoveLine For moving regions: |
|||
|
|
|
Here is my snippet to move the current line or the lines spanned by the active region. It respects cursor position and highlighted region. And it won't break lines when the region doesn't begin/end at line border(s). (It is inspired by eclipse; I found the eclipse way more convenient than 'transpose-lines'.)
|
|||
|
|
|
I found emacs v 24.3.50 transpose-line works don't like before ,so these code above supplied can't work correctly,so i fixed here:
|
|||
|