help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Alt-x not working


From: Javier
Subject: Re: Alt-x not working
Date: Thu, 23 Jul 2015 17:27:42 +0000 (UTC)
User-agent: tin/2.2.1-20140504 ("Tober an Righ") (UNIX) (Linux/3.18.6-1-ARCH (x86_64))


> <help-echo> <help-echo> <help-echo> <help-echo> <help-echo>
> C-g C-h l

It seems something in the operating system is remapping Alt-x to
<help-echo>, and it repeats it several times.  Did you install some
program recently?  are you using autohotkey or similar to remap keys
in windows? changed the language/keyboard settings for windows?

You can still get the Alt-x behavior (Meta-x in emacspeak) by pressing
ESC (release key) x

A kludge that might work is inserting this in .emacs

(global-set-key (read-kbd-macro "<help-echo>") 'execute-extended-comment)

or this, since it appears repeated 5 times for each Alt-x press: 

(global-set-key (read-kbd-macro
    "<help-echo> <help-echo> <help-echo> <help-echo> <help-echo>")
    'execute-extended-comment)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]