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: Tue, 22 Sep 2020 22:05:59 +0200 [thread overview]
Message-ID: <87zh5h37bs.fsf@ebih.ebihd> (raw)
In-Reply-To: CAP_d_8Us5_4q9JxwGeOLtqdvT0XCEMnkJ=UnJufTakXRZ_tpkw@mail.gmail.com
Yuri Khan wrote:
> Secondly, transposing lines is a useful low-level
> primitive, but IMO a much more handy UI metaphor is
> dragging the line at point up or down through the
> surrounding lines while preserving the point’s
> position in the line.
hm ...?
You mean like this?
(defun transpose-next-line ()
(interactive)
(let ((beg (point))
(lin (line-number-at-pos) ))
(beginning-of-line)
(kill-line)
(yank)
(kill-line)
(forward-line -1)
(yank)
(goto-char beg)
(unless (= lin (line-number-at-pos))
(goto-char (point-min))
(forward-line (1- lin))
(end-of-line) )))
(defalias 'tnl #'transpose-next-line) ; [1]
[1] https://dataswamp.org/~incal/emacs-init/geh.el
--
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal
next prev parent reply other threads:[~2020-09-22 20:05 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 [this message]
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
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=87zh5h37bs.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.