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

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

Re: Lisp error when using M-x


From: Óscar Fuentes
Subject: Re: Lisp error when using M-x
Date: Sun, 10 Jan 2021 23:55:12 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.50 (gnu/linux)

wael-zwaiter@gmx.com writes:

> Have done
>
> (global-unset-key (kbd "C-i"))
>
> But, C-i is still doing TAB.

IIRC a few key bindings are hard-coded. You can set the key binding to
something else, but you can't remove the "base" binding.

If you don't want C-i to do TAB, you can set the binding to a do-nothing
command:

(global-set-key (kbd "C-i") (lambda () (interactive)))




reply via email to

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