unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: Emacs's Command Frequency and default keyboard shortcuts
Date: Tue, 17 Oct 2006 22:00:21 -0400	[thread overview]
Message-ID: <jwvy7remll4.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <8764eisbm3.fsf@catnip.gol.com> (Miles Bader's message of "Wed\, 18 Oct 2006 09\:37\:08 +0900")

> (define-minor-mode caps-lock-mode
>   "When enabled, all self-inserting characters will be converted to uppercase."
>   :lighter " CapsLock"
>   (if caps-lock-mode
>       (local-set-key [remap self-insert-command] 'self-insert-upcased)
>     (local-unset-key [remap self-insert-command])))

You mean

  (defvar caps-lock-mode-map
    (let ((map (make-sparse-keymap)))
      (define-key map [remap self-insert-command] 'self-insert-upcased)
      map))
  (define-minor-mode caps-lock-mode
    "When enabled, convert all self-inserting characters to uppercase."
    :lighter " CapsLock")


-- Stefan

  parent reply	other threads:[~2006-10-18  2:00 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1159914415.055557.32190@i3g2000cwc.googlegroups.com>
     [not found] ` <1160574910.715784.64440@i42g2000cwa.googlegroups.com>
     [not found]   ` <1160744232.506208.265870@k70g2000cwa.googlegroups.com>
     [not found]     ` <87zmc0tj1r.fsf@post.rwth-aachen.de>
     [not found]       ` <1161009567.067785.208350@i42g2000cwa.googlegroups.com>
     [not found]         ` <874pu3tos2.fsf@localhorst.mine.nu>
     [not found]           ` <851wp7e638.fsf@lola.goethe.zz>
     [not found]             ` <877iyz719o.fsf@thalassa.informatimago.com>
2006-10-18  0:37               ` Emacs's Command Frequency and default keyboard shortcuts Miles Bader
2006-10-18  1:54                 ` Miles Bader
2006-10-18  2:00                 ` Stefan Monnier [this message]
2006-10-18  2:04                   ` Miles Bader
2006-10-19  9:11                     ` Kim F. Storm
2006-10-19  9:53                       ` David Kastrup
2006-10-19 11:29                         ` Kim F. Storm

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=jwvy7remll4.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).