Skip to Content.
Sympa Menu

texmacs-users - Re: [TeXmacs] How to remove a key combination?

Subject: mailing-list for TeXmacs Users

List archive

Re: [TeXmacs] How to remove a key combination?


Chronological Thread 
  • From: Joris van der Hoeven <address@hidden>
  • To: address@hidden
  • Subject: Re: [TeXmacs] How to remove a key combination?
  • Date: Sun, 10 Sep 2006 15:08:53 +0200

On Wed, Sep 06, 2006 at 01:32:48PM +0200, address@hidden wrote:
> What I should write in my-init-texmacs.scm file in
> order to remove "= @" key combination from the
> keyboard map?

The idea is rather to redefine it with higher precedence:

(kbd-map
(:mode prevail?)
("= @" "=<circ>"))

See also

Help -> Scheme extensions -> Overview of the scheme extension language
Section 4

If my memory is right, you can also do

(kbd-remove
(:mode in-math?)
"= @")

but you need to know the mode for which the keyboard binding was defined.

Best wishes, Joris



Archive powered by MHonArc 2.6.19.

Top of Page