emacs-wiki-discuss
[Top][All Lists]
Advanced

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

Re: [emacs-wiki-discuss] Re: OTT:Emacs Related


From: Paul D. Kraus
Subject: Re: [emacs-wiki-discuss] Re: OTT:Emacs Related
Date: Wed, 15 Jun 2005 08:45:52 -0400
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)


Set buffers-tab-filter-functions to nil to display all open files as
tabs.

If you want to have tabs for files with the same mode (current
behavior) and all your Planner tabs, use the following snippet:

(defun paul/always-show-planner-buffers (buffer-to-select buf1)
 "Show same-mode buffers and planner buffers."
 (or (select-buffers-tab-buffers-by-mode buffer-to-select buf1)
     (eq 'planner-mode (symbol-value-in-buffer 'major-mode buffer-to-select))))
(setq buffers-tab-filter-functions (list 'paul/always-show-planner-buffers))

Hey, this XEmacs thing isn't that bad...
Where can I find a reference for what values can be given to emacs variables. Nil turns it off but what other values are there? Is there a reference somewhere?

Where can I get a good jump on lisp programming and is it worth knowing?

Paul





reply via email to

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