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:27:07 +0200 [thread overview]
Message-ID: <87d02c13ck.fsf@ebih.ebihd> (raw)
In-Reply-To: 874knoap82.fsf@mbork.pl
OK, so how about this?
- does not use the kill ring
- point remains in the same (textual) line, at the
same column
- move forward or backward (with lines, e.g., -1 to
move backward one line)
- move forward or backward any number of lines (with
lines by any number of lines)
- set up keys and aliases as fit...
(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)
--
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal
next prev parent reply other threads:[~2020-09-23 23:27 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 [this message]
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
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=87d02c13ck.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.