如何将新行的光标设置为Emacs中行的开头?

时间:2016-10-23 23:00:36

标签: emacs newline indentation key-bindings

在emacs文本模式下,每按一次enter键,光标将跳转到新行的下一个标签位置,而不是新行的开头。
例如,如果我输入line1enterline2
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)

0 个答案:

没有答案