如何使制表符缩进4个空格(无论是空格还是真实标签,如makefile中)。默认情况下,我的emacs在C文件中插入2个空格,并在makefile中缩进8。
感谢。
答案 0 :(得分:3)
我在我的emacs配置文件中有这个,将全局标签宽度设置为4:
; Turn on tabs
(setq indent-tabs-mode t)
(setq-default indent-tabs-mode t)
;; Bind the TAB key
(global-set-key (kbd "TAB") 'self-insert-command)
;; Set the tab width
(setq default-tab-width 4)
(setq tab-width 4)
(setq c-basic-indent 4)