我在 Windows Vista 上遇到了 Emacs 24 的一些问题。我的 Ctrl-H 以某种方式映射到 Backspace(不是帮助功能)。另一方面,我不能输入“?” (Shift-/ 键)。有没有办法解决这两个问题?非常感谢。
编辑:emacs 是直接从 gnu 网站下载的。它应该是 Windows 原生版本。
Sounds like you are on Linux or UNIX.
stty -a
.erase =
in the output. It will be either ^H
or ^?
.Depending on which it is, put that in your Linux/UNIX shell startup file (e.g. .cshrc, .bashrc) as the stty erase
setting. IOW one of these:
stty erase ^H
stty erase ^?
Here is some more explanation: