回答:
問題は、emacsの各モードがTABキーを別々に定義していることです。グローバルな動作を取得するには、https: //stackoverflow.com/questions/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
ます。