Answers:
问题是emacs中的每个模式都不同地定义了TAB密钥。要获得全局行为,请在/programming/344966/sane-tab-in-emacs中查看Trey Jackson的答案
(defvar just-tab-keymap (make-sparse-keymap) "Keymap for just-tab-mode")
(define-minor-mode just-tab-mode
"Just want the TAB key to be a TAB"
:global t :lighter " TAB" :init-value 0 :keymap just-tab-keymap
(define-key just-tab-keymap (kbd "TAB") 'indent-for-tab-command))
您可能要使用它,'self-insert-command
而不要'indent-for-tab-command
像其他回答该问题的人所指出的那样使用。