首页 > 系统服务 > 详细

Emacs 构建 Tabbar

时间:2015-01-25 22:34:48      阅读:346      评论:0      收藏:0      [点我收藏+]


;;;;;;;;;;;;;;;;;;;;; tabbar ;;;;;;;;;;;;;;;;;;;;;;;;;;
(require ‘tabbar)
(tabbar-mode 1)
(global-set-key [(meta j)] ‘tabbar-forward)
(global-set-key [(meta k)] ‘tabbar-backward)

(set-face-attribute ‘tabbar-default nil
                    :background "gray"
                    :foreground "gray")
(set-face-attribute ‘tabbar-selected nil
                    :inherit ‘tabbar-default
                    :background "lightblue"
                    :box ‘(:line-width 1 :color "lightblack") )
(set-face-attribute ‘tabbar-unselected nil
                    :inherit ‘tabbar-default
                    :box ‘(:line-width 1 :color "gray"))

(custom-set-variables ‘(tabbar-separator (quote (1.5))))


效果:

技术分享

Emacs 构建 Tabbar

原文:http://blog.csdn.net/pandora_madara/article/details/43120977

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!