From: Bob Proulx <bob@proulx.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Transposing words over middle words
Date: Thu, 16 Nov 2017 15:55:17 -0700 [thread overview]
Message-ID: <20171116152956604638874@bob.proulx.com> (raw)
In-Reply-To: <86h8tu53il.fsf@zoho.com>
Emanuel Berg wrote:
> Marcin Borkowski wrote:
> > I had no idea! How cool is that?
> > Thanks a lot!!!
>
> Cool indeed, but the mark business makes it as
> complicated anyway compared with transposing
> two times:
Yes. Agreed.
> (defun transpose-over-word ()
> (interactive)
> (transpose-subr #'forward-word 2)
> (backward-word 1)
> (transpose-subr #'forward-word -1) )
This is a nice example of the joy of customizing emacs. For my tastes
I would want it to move the point with the word being dragged forward
two words. Here is my modification to the above.
(defun transpose-over-word ()
(interactive)
(transpose-subr #'forward-word 2)
(backward-word 1)
(transpose-subr #'forward-word -1)
(forward-word 1) )
That actually does exactly what I would want M-1 M-t to do.
Bob
next prev parent reply other threads:[~2017-11-16 22:55 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-15 23:17 Transposing words over middle words Bob Proulx
2017-11-15 23:35 ` Eric Abrahamsen
2017-11-16 6:03 ` Emanuel Berg
2017-11-16 0:04 ` Emanuel Berg
2017-11-18 17:07 ` ken
2017-11-18 19:34 ` Emanuel Berg
2017-11-19 2:06 ` ken
2017-11-19 2:15 ` Emanuel Berg
2017-11-19 2:34 ` John Mastro
2017-11-19 3:39 ` Emanuel Berg
2017-11-19 4:37 ` Drew Adams
2017-11-19 4:58 ` Drew Adams
2017-11-19 14:56 ` Emanuel Berg
2017-11-16 19:34 ` Charles A. Roelli
2017-11-16 19:41 ` Emanuel Berg
2017-11-16 20:09 ` Marcin Borkowski
2017-11-16 21:15 ` Emanuel Berg
2017-11-16 22:55 ` Bob Proulx [this message]
2017-11-16 23:02 ` Emanuel Berg
2017-11-16 21:18 ` Emanuel Berg
2017-11-16 22:43 ` Drew Adams
2017-11-16 22:59 ` Emanuel Berg
2017-11-17 16:21 ` Drew Adams
2017-11-17 20:52 ` Emanuel Berg
2017-11-16 22:28 ` Bob Proulx
[not found] ` <mailman.3765.1510789425.27995.help-gnu-emacs@gnu.org>
2017-11-16 22:02 ` Michael Piotrowski
2017-11-16 23:00 ` Bob Proulx
2017-11-16 23:29 ` Eric Abrahamsen
2017-11-16 23:30 ` Eric Abrahamsen
2017-11-17 0:27 ` put it in MELPA (was: Re: Transposing words over middle words) Emanuel Berg
2017-11-17 0:30 ` put it in MELPA Eric Abrahamsen
2017-11-17 15:16 ` put it in MELPA (was: Re: Transposing words over middle words) Tim Visher
[not found] <mailman.3764.1510787840.27995.help-gnu-emacs@gnu.org>
2017-11-16 7:04 ` Transposing words over middle words Loris Bennett
2017-11-16 8:41 ` Joost Kremers
2017-11-16 8:47 ` Joost Kremers
2017-11-16 16:06 ` Eli Zaretskii
2017-11-16 22:26 ` Bob Proulx
2017-11-17 5:00 ` Yuri Khan
2017-11-17 5:08 ` Emanuel Berg
2017-11-17 8:55 ` Gian Uberto Lauri
2017-11-17 8:58 ` Gian Uberto Lauri
2017-11-17 9:10 ` Eli Zaretskii
2017-11-17 9:35 ` Gian Uberto Lauri
2017-11-17 16:03 ` Stefan Monnier
2017-11-17 16:19 ` Robert Pluim
2017-11-17 20:41 ` Marcin Borkowski
2017-11-17 16:42 ` Eli Zaretskii
2017-11-17 22:53 ` Stefan Monnier
2017-11-17 23:02 ` Emanuel Berg
[not found] ` <mailman.3897.1510936953.27995.help-gnu-emacs@gnu.org>
2017-11-17 16:57 ` Rusi
2017-11-17 17:26 ` Drew Adams
2017-11-17 18:05 ` Eli Zaretskii
2017-11-17 22:55 ` Stefan Monnier
2017-11-17 23:09 ` Emanuel Berg
2017-11-21 17:21 ` Tomas Nordin
2017-11-22 18:18 ` Arnaldo Mandel
2017-11-22 19:15 ` Emanuel Berg
2017-11-22 21:33 ` Stefan Monnier
2017-11-17 20:38 ` Marcin Borkowski
2017-11-18 17:11 ` Robert Thorpe
2017-11-16 21:55 ` Michael Piotrowski
2017-11-16 23:05 ` Joseph C. Fineman
2017-11-17 0:39 ` Emanuel Berg
2017-11-17 7:19 ` Eli Zaretskii
[not found] ` <mailman.3847.1510879170.27995.help-gnu-emacs@gnu.org>
2017-11-17 23:34 ` Joseph C. Fineman
2017-11-18 0:05 ` Emanuel Berg
[not found] ` <mailman.3932.1510963563.27995.help-gnu-emacs@gnu.org>
2017-11-18 22:55 ` Joseph C. Fineman
2017-11-18 23:57 ` Emanuel Berg
[not found] ` <mailman.3856.1510903218.27995.help-gnu-emacs@gnu.org>
2017-11-17 23:35 ` Joseph C. Fineman
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171116152956604638874@bob.proulx.com \
--to=bob@proulx.com \
--cc=help-gnu-emacs@gnu.org \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).