在emacs文本模式下,每按一次enter
键,光标将跳转到新行的下一个标签位置,而不是新行的开头。
例如,如果我输入line1
,enter
,line2
:
line1
line2
所需的格式是:
line1
line2
以下是我对文字模式的配置:
(defun my-custom-settings-fn ()
(setq indent-tabs-mode t)
(setq tab-stop-list (number-sequence 0 200 4))
(setq tab-width 4)
(setq indent-line-function 'insert-tab))
(add-hook 'text-mode-hook 'my-custom-settings-fn)