From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Daniel Lidstrom Newsgroups: gmane.emacs.help Subject: Re: Tabbar installation Date: Sat, 14 Feb 2004 00:14:03 +0100 Organization: Home Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <402D21EA.2030003@yahoo.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1076714270 7120 80.91.224.253 (13 Feb 2004 23:17:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 Feb 2004 23:17:50 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Feb 14 00:17:41 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ArmZ3-0001aj-01 for ; Sat, 14 Feb 2004 00:17:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ArmXd-0004X0-87 for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Feb 2004 18:16:13 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!newsfeed.stueberl.de!ecngs!feeder.ecngs.de!news.cambrium.nl!news.cambrium.nl!amsnews01.chello.com!amsnews04.chello.com!amstwist00.POSTED!not-for-mail User-Agent: Pan/0.14.2 (This is not a psychotic episode. It's a cleansing moment of clarity.) Original-Newsgroups: gnu.emacs.help Original-Lines: 43 Original-NNTP-Posting-Host: 193.150.217.25 Original-X-Complaints-To: abuse@chello.se Original-X-Trace: amstwist00 1076713866 193.150.217.25 (Sat, 14 Feb 2004 00:11:06 MET) Original-NNTP-Posting-Date: Sat, 14 Feb 2004 00:11:06 MET Original-Xref: shelby.stanford.edu gnu.emacs.help:120888 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:16838 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16838 On Fri, 13 Feb 2004 12:13:46 -0700, Kevin Rodgers wrote: > Daniel Lidstrom wrote: > >> how do I activate the tabbar script whenever I start emacs? I've tried to >> add (load "tabbar") into my .emacs file. This doesn't seem to do it and >> when I type M-x `tabbar-mode' I get [No match]. How do I do this? > > Where are tabbar.el and tabbar.elc installed? Are those directories in your > > load-path? If so, (load-library "tabbar") or (require 'tabbar) should work. load-path's value is ("/home/daniel/.emacs-lisp/" "/usr/share/emacs/21.3/site-lisp" "/usr/share/emacs/site-lisp" "/usr/share/emacs/21.3/leim" "/usr/share/emacs/21.3/lisp" "/usr/share/emacs/21.3/lisp/toolbar" "/usr/share/emacs/21.3/lisp/textmodes" "/usr/share/emacs/21.3/lisp/progmodes" "/usr/share/emacs/21.3/lisp/play" "/usr/share/emacs/21.3/lisp/obsolete" "/usr/share/emacs/21.3/lisp/net" "/usr/share/emacs/21.3/lisp/mail" "/usr/share/emacs/21.3/lisp/language" "/usr/share/emacs/21.3/lisp/international" "/usr/share/emacs/21.3/lisp/gnus" "/usr/share/emacs/21.3/lisp/eshell" "/usr/share/emacs/21.3/lisp/emulation" "/usr/share/emacs/21.3/lisp/emacs-lisp" "/usr/share/emacs/21.3/lisp/calendar") I put tabbar.el in ~/.emacs-lisp/ and .emacs looks like: ;;; Set load-path (setq load-path (cons (expand-file-name "~/.emacs-lisp/") load-path)) ;;; Prevent Extraneous Tabs (setq-default indent-tabs-mode nil) ;; Load tabbar (load-library "tabbar") (global-set-key [(control f10)] 'tabbar-local-mode) Now when I try ctrl-f10 with two or more files loaded in emacs I don't see any tabs. What am I missing? -- Daniel