emacs:C 主模式:如何让 Tab 键始终插入制表符 (\t)?

emacs:C 主模式:如何让 Tab 键始终插入制表符 (\t)?

当 C 主模式处于活动状态且光标位于任何位置(包括行首)时,如何设置 Emacs 使用 \t 作为制表符?

答案1

将其绑定到self-insert-commandC 模式的键盘映射中:

(define-key c-mode-base-map "\t" 'self-insert-command)

相关内容