help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tabbar. Hide for special buffers. What's wrong with my .emacs ?


From: Louise Hoffman
Subject: Re: Tabbar. Hide for special buffers. What's wrong with my .emacs ?
Date: Sun, 10 May 2009 08:30:19 -0700 (PDT)
User-agent: G2/1.0

Hi,

If I comment almost everything out, so I only have

;; Lisp modules goes here
(add-to-list 'load-path "~/.elisp")

;; Tabbar. Hide for special buffers
(when (require 'tabbar nil t)
  (setq tabbar-buffer-groups-function
        (lambda (b) (list "All Buffers")))
  (setq tabbar-buffer-list-function
        (lambda ()
          (remove-if
           (lambda(buffer)
             (find (aref (buffer-name buffer) 0) " *"))
           (buffer-list))))
  (tabbar-mode))

I get the same, that the tabbar doesn't show up.

Even with

;; Enable tabbar
(require 'tabbar)
(tabbar-mode)

it doesn't show up, when the "hide" code is there...




reply via email to

[Prev in Thread] Current Thread [Next in Thread]