Difference between revisions of "Tabbar"

From WikEmacs
Jump to navigation Jump to search
(described tabbar-mode (tabbar.el))
 
m
Line 1: Line 1:
<tt>{{{1}}}</tt>
 
 
Template:Mode didn't have much content, and there was no Emacs mode category. So this is a crude first draft.
 
  
 
==tabbar-mode==
 
==tabbar-mode==
Line 20: Line 17:
 
*[http://amitp.blogspot.com/2007/04/emacs-buffer-tabs.html overview and customization tips]
 
*[http://amitp.blogspot.com/2007/04/emacs-buffer-tabs.html overview and customization tips]
 
*[http://www.emacswiki.org/cgi-bin/wiki/TabBarMode EmacsWiki:TabBarMode]
 
*[http://www.emacswiki.org/cgi-bin/wiki/TabBarMode EmacsWiki:TabBarMode]
 +
 +
 +
 +
 +
[[Category:Appearance]]
 +
[[Category:Buffer Navigation]]

Revision as of 00:39, 3 April 2012

tabbar-mode

Tabbar is an Emacs minor mode that displays tabs at the top, as do tabbed browers such as Chrome and Firefox.

(require 'tabbar)
(tabbar-mode 1)
(global-set-key (kbd "<C-next>")  'tabbar-forward)
(global-set-key (kbd "<C-prior>")  'tabbar-backward)

tabbar version 1.3 works in Gnu Emacs 23.4.1 and GNU Emacs 24.0.94.1 on Windows XP (i386-mingw-nt5.1.2600). I have not tested tabbar version 2.0.

External Links