emacs的強大之處在於,只有你想不到,沒有她做不到!
折騰了兩個小時,終於在終端putty上搞定了tabbar。下面是一些資源,以方便後面的同學快速搞定。
當然網上還有叫什麼tabbar_ruler的乙個外掛程式,我試著用了一下,在終端下實在不知道它有啥用。。。就果斷解除安裝了。
下面是我在.emacs中tabbar的配置
(require 'tabbar)
(tabbar-mode 1)(
global-set-key [(meta j)] '
tabbar-forward)
(global-set-key [(meta k)] '
tabbar-backward)
; close default
tabs,and move all files into one group
(setq tabbar-buffer-list-function
(lambda ()
(remove-if
(lambda(buffer)
(find (aref (buffer-name buffer) 0) "*"
)) (buffer-list))))
(setq tabbar-buffer-groups-function
(lambda()(list
"all
")))
(set-face-attribute '
tabbar-button nil)
;;set tabbar's backgroud color
(set-face-attribute '
tabbar-default nil
:background "
gray
":foreground
"gray30")
(set-face-attribute '
tabbar-selected nil
:inherit '
tabbar-default
:background
"green
":box
'(:line-width 3 :color "darkgoldenrod") )
(set-face-attribute '
tabbar-unselected nil
:inherit '
tabbar-default
:box '
(:line-width 3 :color "gray"))
;; useful: set tabbar's separator gap
(custom-set-variables '
(tabbar-separator (quote (1.5))))
又玩到這麼晚了。。。
下週末一定要12點睡!
jq新增標籤屬性 jquery如何增加標籤屬性?
jquery中可以使用attr 方法為標籤新增屬性。在jquery中使用 selector attr attribute,value 方法即可設定標籤屬性。jquery中可以使用attr 方法為標籤新增屬性。1 attr 屬性名 獲取屬性的值 取得第乙個匹配元素的屬性值。通過這個方法可以方便地從第乙...
Docker學習筆記 3 為映象新增標籤
3.為映象新增標籤 a.標籤內容 i.映象名的末尾 1 版本號 2 版本名 3 latest ii.映象名的前面 1 registry名和埠 2 使用者名稱 b.為映象分配名稱 i.構建映象 docker build t 映象名 1 從頭構建映象,即從dockerfile構建映象,並為其分配乙個名字...
HTML5 新增標籤
html5 現在已經不是 sgml 的子集,主要是關於影象,位置,儲存,多工等功能的增加。ie8 ie7 ie6支援通過document.createelement方法產生的標籤,可以利用這一特性讓這些瀏覽器支援html5新標籤。定義圖形 定義文章 定義頁面內容之外的內容 可用作文章的側欄 定義聲音...