unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: "Stefan Monnier <foo@acm.com>" <monnier+gnu.emacs.help/news/@flint.cs.yale.edu>
Subject: Re: Disabling all keybindings - How?
Date: 12 Oct 2002 14:45:29 -0400	[thread overview]
Message-ID: <5lvg47ebsm.fsf@rum.cs.yale.edu> (raw)
In-Reply-To: uy995whec.fsf@sdm.de

>>>>> "Klaus" == Klaus Berndl <Klaus.Berndl@sdm.de> writes:
> I want to write a very small major-mode with only very few senseful
> keybindings (e.g.: v, h, c, q, s). I want to disable all other keybindings of
> Emacs because they make really no sense (A new frame is started with a new
> buffer in this major-mode, some actions have to be performed by the user
> (e.g.: hitting v or h), stuff is saved by hitting s and then we quit by
> hitting q (which deletes the new frame) - That's all.

You can try

   (defvar bla-mode-map
     (let ((map (make-sparse-keymap)))
       (define-key map "v" 'bla-v-command)
       ...
       (define-key map "s" 'bla-s-command)
       ;; `t' is a special "default" binding.
       (define-key map [t] 'undefined)
       map))

it will prevent function-key-map from doing its job, tho since
all keys will be considered bound to `undefined'.
You might also have some problems with the fact that frame
switches (with the mouse) go through a `switch-frame' event,
so you might want to explicitly bind it to nil to make sure
that its binding in the global map is used.


        Stefan

      parent reply	other threads:[~2002-10-12 18:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-11  7:42 Disabling all keybindings - How? Klaus Berndl
2002-10-11 14:42 ` Jesper Harder
2002-10-12 18:45 ` Stefan Monnier <foo@acm.com> [this message]

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=5lvg47ebsm.fsf@rum.cs.yale.edu \
    --to=monnier+gnu.emacs.help/news/@flint.cs.yale.edu \
    /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).