简体   繁体   中英

Emacs indent, use tab for shell and spaces for c

有没有办法配置emacs所以C文件缩进四个空格和带有选项卡的shell脚本?

For instance:

(add-hook 'c-mode-common-hook (lambda ()
                                (setq indent-tabs-mode nil)
                                (set c-basic-offset 4)))

(add-hook 'sh-mode-hook (lambda () (setq indent-tabs-mode t)))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM