all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "'Barry OReilly'" <gundaetiapo@gmail.com>,
	"'help-gnu-emacs'" <help-gnu-emacs@gnu.org>
Subject: RE: How to get in progress Key Sequence from Elisp
Date: Sun, 2 Dec 2012 13:15:55 -0800	[thread overview]
Message-ID: <0A9AD948985444A1BB410F4B8A960BA3@us.oracle.com> (raw)
In-Reply-To: <CAFM41H1jVRufkFhz0HX98AVz0-iYpuY9TrYx8H7bhV1yuV5X6w@mail.gmail.com>

> When I'm in the middle of inputting a Key Sequence, how may
> I get a data structure with the Key Sequence entered thus
> far from Elisp?
> ...
> I can do this if I can get the Key Sequence as the user has
> been entered at that time.

If I understand what you are asking, see `this-command-keys'.  E.g.:

(defun foo ()
  "..."
  (let* ((this-key  (this-command-keys))
         (prefix    (substring
                     this-key
                     0 (1- (length this-key)))))
    ;; (message "PREFIX: %S, DESCRIPTION: %S"
    ;;          prefix (key-description prefix))
    prefix))

This is what I use in the code for Icicles key completion.




  reply	other threads:[~2012-12-02 21:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-02 20:09 How to get in progress Key Sequence from Elisp Barry OReilly
2012-12-02 21:15 ` Drew Adams [this message]
2012-12-03 14:37   ` Barry OReilly

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=0A9AD948985444A1BB410F4B8A960BA3@us.oracle.com \
    --to=drew.adams@oracle.com \
    --cc=gundaetiapo@gmail.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.
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.