Set 4 Space Indent in Emacs in Text Mode

后端 未结 20 2268
梦谈多话
梦谈多话 2020-11-29 15:27

I\'ve been unsuccessful in getting Emacs to switch from 8 space tabs to 4 space tabs when pressing the TAB in buffers with the major mode text-mode.

20条回答
  •  渐次进展
    2020-11-29 15:48

    (defun my-custom-settings-fn ()
      (setq indent-tabs-mode t)
      (setq tab-stop-list (number-sequence 2 200 2))
      (setq tab-width 2)
      (setq indent-line-function 'insert-tab))
    
    (add-hook 'text-mode-hook 'my-custom-settings-fn)
    

提交回复
热议问题