博客首页 注册 建议与交流 排行榜 加入友情链接
推荐 投诉 搜索: 帮助

jiushen

  jiushen.cublog.cn

关于作者
	
|| << >> ||
我的分类


我最喜欢的emacs的c-mode的style
;; set c basic offset
(defun linux-c-mode ()
;"C mode with adjusted defaults for use with the Linux kernel."
(interactive)
(c-mode)
(c-set-style "K&R")
(setq c-basic-offset 8))
 
(setq auto-mode-alist
      (append '(("\\.h$"     . linux-c-mode)
                ("\\.c$"     . linux-c-mode)
                ) auto-mode-alist))

发表于: 2008-02-29,修改于: 2008-02-29 10:52,已浏览185次,有评论0条 推荐 投诉


网友评论
 发表评论