all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Omar Polo <op@omarpolo.com>
To: Adam Kandur <rndd@tuta.io>
Cc: help-gnu-emacs@gnu.org
Subject: Re: define-key with command arguments
Date: Wed, 10 Feb 2021 17:49:28 +0100	[thread overview]
Message-ID: <87sg63eulj.fsf@omarpolo.com> (raw)
In-Reply-To: <MTAoAJc--7-2@tuta.io>


Adam Kandur via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org> writes:

> hi everyone! is it possible to do something like his
>
> (define-derived-mode test special-mode "test"
>   (define-key test-func (kbd "SPC")     'test-func-with (arg)))
> so, i wanna pass variable in function i'm going to run with keyboard binding. is it possible?

You can use closure, like

    (define-key a-keymap (kbd "SPC") (lambda ()
                                       (interactive)
                                       (test-func-with arg)))



  reply	other threads:[~2021-02-10 16:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-10 12:00 define-key with command arguments Adam Kandur via Users list for the GNU Emacs text editor
2021-02-10 16:49 ` Omar Polo [this message]
2021-02-10 17:37 ` Marcin Borkowski

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=87sg63eulj.fsf@omarpolo.com \
    --to=op@omarpolo.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=rndd@tuta.io \
    /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.