2011-04-03 74 views
1

如何使製表符縮進4個空格(可以是makefile中的空格或真正的製表符)。默認情況下,我的emacs在C文件中插入2個空格,在makefile中縮進8個製表符。Emacs:Makefile選項卡大小

謝謝。

+1

你想在Makefile中,在空間和標籤之間的(相當微妙的)差別是語法有關的真正的標籤。 – Vatine 2011-04-03 08:20:37

+0

是的,我想要makefile中的真正選項卡。但是我不希望它們寬達8個空格。這太浪費了不動產:) – pic11 2011-04-03 12:08:07

回答

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) 
+0

謝謝!在過去的一個小時裏我一直在爲此苦苦掙扎! – Senthess 2011-07-30 10:59:23

相關問題