当 C 主模式处于活动状态且光标位于任何位置(包括行首)时,如何设置 Emacs 使用 \t 作为制表符?
答案1
将其绑定到self-insert-command
C 模式的键盘映射中:
(define-key c-mode-base-map "\t" 'self-insert-command)
当 C 主模式处于活动状态且光标位于任何位置(包括行首)时,如何设置 Emacs 使用 \t 作为制表符?
将其绑定到self-insert-command
C 模式的键盘映射中:
(define-key c-mode-base-map "\t" 'self-insert-command)