Set 4 Space Indent in Emacs in Text Mode

后端 未结 20 2290
梦谈多话
梦谈多话 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:45

    (setq tab-width 4)
    (setq tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80))
    (setq indent-tabs-mode nil)
    

提交回复
热议问题