dongbin / my_emacs

Everybody have his own emacs, why not me?

This URL has Read+Write access

my_emacs / tabbar-init.el
100644 18 lines (14 sloc) 0.657 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(require 'tabbar)
(tabbar-mode)
(global-set-key (quote [C-S-down]) 'tabbar-backward-group)
(global-set-key (quote [C-S-up]) 'tabbar-forward-group)
(global-set-key (quote [C-S-left]) 'tabbar-backward)
(global-set-key (quote [C-S-right]) 'tabbar-forward)
 
;; Setup for buffer switch
;;(global-set-key "\C-x\C-b" 'bs-show) ;; or another key
 
(global-set-key (quote [S-iso-lefttab]) 'bs-cycle-previous)
;; (global-set-key [(control tab)] 'bs-cycle-next)
(global-set-key [(control tab)] 'ido-switch-buffer)
 
;; (global-set-key "\M-p" 'bs-cycle-previous)
;; (global-set-key "\M-n" 'bs-cycle-next)
(global-set-key "\M-s" 'ecb-toggle-ecb-windows)