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

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

share|improve this question
1  
I'm pretty sure the idiom is to just kill what you want to move, use the usual navigation functions (including isearch, etc.) to move the point where you want the code to be, and then yank. There is a stack of kills, remember, so you don't even have to find the location immediately; you can gather up other bits to yank later. Personally, as a heavy Emacs user, I can't imagine any situation where I'd rather manually move a single line up or down. It just wouldn't be useful. – jrockway Mar 12 '10 at 2:27
1  
@jrockway: thanks for your comment. I think everyone has his own way of doing things. I work a lot with eclipse and I'm very used to moving lines/regions. One of the great thing of having emacs very extensible is that this functionality can be easily added. – fikovnik Mar 14 '10 at 15:18
1  
agreed. I frequently want to move lines up and down as you describe, whether or not I'm in an editor that supports it. Or, for that matter, whether or not I'm working on code. Word supports this (by paragraph) with Alt+Shift+Up and Down, and I map that in my editors whenever I can. – harpo Sep 28 '10 at 0:47
Yes, everyone is different, and contexts are different. I will add an anecdote, however. Many moon ago, before I came to Emacs, I too was in the same habit. I used a (good) editor that had keys for this, and it was just the way I was used to. Immediately after moving to Emacs, I wrote myself some code such as that mentioned on this page, to do the same thing: move lines or the region text up/down. Eventually, I stopped using this "feature" and just did what most people do in Emacs: kill + yank. I never looked back. Just one person's story, FWIW. – Drew Aug 21 '11 at 20:18
@Drew and jrockway : I think settle for less is hardly the emacs way. Moving lines is just quicker when you want to move them than kill/yankk is. And org-mode ofcourse has it implemented too for a reason: indeed there are many cases you want to move a line, moving a wrong placed statement in / out a block scope is one, alter statement order, alter document order (see org-mode), .. A lot of people use it in eclipse. What you don't use , you often don't miss, but the usefullness of moving lines is a fact for a whole lot of programmers – Peter Apr 6 at 12:27

8 Answers

up vote 14 down vote accepted

A line can be moved using transpose-lines bound to C-x C-t. Dunno about regions though.

I found this elisp snippet that does what you want, except you need to change the bindings.

share|improve this answer
Thanks for the snippet. This is exactly what I was looking for! – fikovnik Mar 14 '10 at 15:25

Update: Install the move-text package from Marmalade or MELPA to get the following code.

Here's what I use, which works on both regions and individual lines:

(defun move-text-internal (arg)
  (cond
   ((and mark-active transient-mark-mode)
    (if (> (point) (mark))
        (exchange-point-and-mark))
    (let ((column (current-column))
          (text (delete-and-extract-region (point) (mark))))
      (forward-line arg)
      (move-to-column column t)
      (set-mark (point))
      (insert text)
      (exchange-point-and-mark)
      (setq deactivate-mark nil)))
   (t
    (let ((column (current-column)))
      (beginning-of-line)
      (when (or (> arg 0) (not (bobp)))
        (forward-line)
        (when (or (< arg 0) (not (eobp)))
          (transpose-lines arg)
          (when (and (eval-when-compile
                       '(and (>= emacs-major-version 24)
                             (>= emacs-minor-version 3)))
                     (< arg 0))
            (forward-line -1)))
        (forward-line -1))
      (move-to-column column t)))))

(defun move-text-down (arg)
  "Move region (transient-mark-mode active) or current line
  arg lines down."
  (interactive "*p")
  (move-text-internal arg))

(defun move-text-up (arg)
  "Move region (transient-mark-mode active) or current line
  arg lines up."
  (interactive "*p")
  (move-text-internal (- arg)))


(global-set-key [M-S-up] 'move-text-up)
(global-set-key [M-S-down] 'move-text-down)
share|improve this answer
this guy picked the wrong answer, in my opinion. I despised your bindings, and changed them to M-up arrow and M-down arrow, but this works BETTER then the emacs wiki version emacswiki.org/emacs/MoveLineRegion . post your solution there sanityinc. thanks. – pjammer Jun 26 '10 at 17:12
Ive added this to EmacsWiki for you, it's here: emacswiki.org/emacs/MoveText – Slomojo Oct 4 '10 at 22:48
Thanks! I think that code was already on there (emacswiki.org/emacs/basic-edit-toolkit.el) but this new page will be easier for people to find. – sanityinc Oct 5 '10 at 8:59
Ahh, cool I've not seen that before, looks like basic-edit-toolkit could use a cleanup. – Slomojo Oct 5 '10 at 21:42
Just wanted to note here that I packaged move-text.el for use with package.el and uploaded it to marmalade-repo.org for easy installation. – sanityinc Jan 15 '12 at 9:45
show 2 more comments

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.

share|improve this answer
+1, I have something like this in my .emacs, it's very handy – Leo Alekseyev Mar 11 '10 at 13:06
1  
Btw, if you do decide to use the linked snippet, you might want to change the let statement to (let ((col (current-column)) (line-move-visual nil)), otherwise you get funny behavior with wrapped lines. – Leo Alekseyev Mar 11 '10 at 14:47

The transpose-paragraph function could help you.

You might also want to have a look to the transpose section in the Emacs manual. Essentially:

C-t
Transpose two characters (transpose-chars).
M-t
Transpose two words (transpose-words).
C-M-t
Transpose two balanced expressions (transpose-sexps).
C-x C-t
Transpose two lines (transpose-lines).
share|improve this answer

I have written a couple of interactive functions for moving lines up/down:

;; move line up
(defun move-line-up ()
  (interactive)
  (transpose-lines 1)
  (previous-line 2))

(global-set-key [(control shift up)] 'move-line-up)

;; move line down
(defun move-line-down ()
  (interactive)
  (next-line 1)
  (transpose-lines 1)
  (previous-line 1))

(global-set-key [(control shift down)] 'move-line-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.

share|improve this answer
Wonderful, thanks! – semberal Jan 16 '12 at 18:51

There is an entry in the emacs wiki just for this:

http://www.emacswiki.org/emacs/MoveLine

For moving regions:

http://www.emacswiki.org/emacs/MoveRegion

share|improve this answer

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'.)

;; move the line(s) spanned by the active region up/down (line transposing)
;; {{{
(defun move-lines (n)
  (let ((beg) (end) (keep))
    (if mark-active 
        (save-excursion
          (setq keep t)
          (setq beg (region-beginning)
                end (region-end))
          (goto-char beg)
          (setq beg (line-beginning-position))
          (goto-char end)
          (setq end (line-beginning-position 2)))
      (setq beg (line-beginning-position)
            end (line-beginning-position 2)))
    (let ((offset (if (and (mark t) 
                           (and (>= (mark t) beg)
                                (< (mark t) end)))
                      (- (point) (mark t))))
          (rewind (- end (point))))
      (goto-char (if (< n 0) beg end))
      (forward-line n)
      (insert (delete-and-extract-region beg end))
      (backward-char rewind)
      (if offset (set-mark (- (point) offset))))
    (if keep
        (setq mark-active t
              deactivate-mark nil))))

(defun move-lines-up (n)
  "move the line(s) spanned by the active region up by N lines."
  (interactive "*p")
  (move-lines (- (or n 1))))

(defun move-lines-down (n)
  "move the line(s) spanned by the active region down by N lines."
  (interactive "*p")
  (move-lines (or n 1)))
share|improve this answer

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:

(defun move-text-internal (arg)
  (cond
   ((and mark-active transient-mark-mode)
    (if (> (point) (mark))
        (exchange-point-and-mark))
    (let ((column (current-column))
          (text (delete-and-extract-region (point) (mark))))
      (forward-line arg)
      (move-to-column column t)
      (set-mark (point))
      (insert text)
      (exchange-point-and-mark)
      (setq deactivate-mark nil)))
   (t
    (let ((column (current-column)))
      (beginning-of-line)
      (when (or (> arg 0) (not (bobp)))
        (forward-line )
        (when (or (< arg 0) (not (eobp)))
          (transpose-lines arg)
          (when (< arg 0)
            (forward-line -1)))         ;works  in emacs 24.3
        (forward-line -1))
      (move-to-column column t)))))

(defun move-text-down (arg)
  "Move region (transient-mark-mode active) or current line
  arg lines down."
  (interactive "*p")
  (move-text-internal arg))

(defun move-text-up (arg)
  "Move region (transient-mark-mode active) or current line
  arg lines up."
  (interactive "*p")
  (move-text-internal (- arg)))
share|improve this answer
I've added your fix to my original answer below, and to the move-text.el package on emacswiki. I'd suggest you remove this answer now to avoid confusion. :-) – sanityinc Apr 26 at 15:02

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.