From: Christopher Dimech <dimech@gmx.com>
To: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: Keybinding Default Command and Execution with Argument
Date: Thu, 5 Nov 2020 16:41:11 +0100 [thread overview]
Message-ID: <trinity-8c0e18e2-6d2b-4b18-a749-af4564c13768-1604590871099@3c-app-mailcom-bs14> (raw)
I made a simple defun to move the current character over n other characters.
It behaves a differently than transpose-chars, because the cursor point stays
on the same character, rather than moving to the cursor next to the swapped
character to the right.
When using transpose-chars. one can use transpose-chars without any argument,
taking the default of one.
M-x transpose-chars
Alternatively, one can pass an argument (e.g. 3) as follows
C-u 3 M-x transpose-chars
Currently, I can only use Skip-Over-Chars with argument. Is there a way to
use the function Skip-Over-Chars without requiring an argument, but defaulting
the argument to one as what can be done with transpose-chars?
(defun Skip-Over-Chars (n)
"Skip-Over-Chars transfers character over 'n' other
characters, forward and backward."
(interactive "N Number of skips: ")
(forward-char)
(transpose-chars n)
(backward-char)
)
next reply other threads:[~2020-11-05 15:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-05 15:41 Christopher Dimech [this message]
2020-11-05 15:58 ` Keybinding Default Command and Execution with Argument tomas
2020-11-05 16:17 ` Drew Adams
2020-11-05 16:19 ` Christopher Dimech
2020-11-05 16:24 ` tomas
2020-11-05 16:29 ` Christopher Dimech
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=trinity-8c0e18e2-6d2b-4b18-a749-af4564c13768-1604590871099@3c-app-mailcom-bs14 \
--to=dimech@gmx.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).