all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Keybinding to transpose current line with next line
Date: Thu, 24 Sep 2020 01:41:36 +0200	[thread overview]
Message-ID: <874kno12of.fsf@ebih.ebihd> (raw)
In-Reply-To: 87d02c13ck.fsf@ebih.ebihd

> set up [...] aliases as fit...

Sure!

(defun move-line (&optional lines)
  (interactive "*p")
  (let ((lin (line-number-at-pos))
        (col (current-column))
        (num-lines (or lines 1)) )
    (beginning-of-line)
    (let ((line (thing-at-point 'line)))
      (delete-region (point-at-bol) (point-at-eol))
      (delete-char 1)
      (goto-char (point-min))
      (forward-line (+ lin num-lines -1))
      (insert line)
      (forward-line -1)
      (beginning-of-line)
      (forward-char col) )))
(defalias 'ml #'move-line)
(defalias 'mlb (lambda () (interactive) (move-line -1)))

I.e.,:

  Forward  1: M-x    ml  RET
  Backward 1: M-x    mlb RET
  Forward  X: C-u  X ml  RET
  Backward X: C-u -X ml  RET

Also the usual:

  Forward  4: C-u     ml RET
  Forward 16: C-u C-u ml RET

etc

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




  parent reply	other threads:[~2020-09-23 23:41 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-22 14:31 Keybinding to transpose current line with next line Christopher Dimech
2020-09-22 14:53 ` Yuri Khan
2020-09-22 20:05   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-23  4:29     ` Yuri Khan
2020-09-23  5:02       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-23  8:09         ` Marcin Borkowski
2020-09-23 22:48           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-23 23:27           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-23 23:32             ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-23 23:41             ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
2020-09-22 19:39 ` Francis Belliveau
2020-09-22 19:55   ` Emanuel Berg via Users list for the GNU Emacs text editor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=874kno12of.fsf@ebih.ebihd \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.