From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Eric Ludlam Newsgroups: gmane.emacs.help Subject: Re: emacs speedbar configuration Date: 26 Sep 2002 09:38:37 -0400 Organization: The MathWorks, Inc., Natick, MA 01760 Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <3D91FBEC.1090600@fi.muni.cz> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1033048030 8021 127.0.0.1 (26 Sep 2002 13:47:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 26 Sep 2002 13:47:10 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17uYyz-00025F-00 for ; Thu, 26 Sep 2002 15:47:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17uYz9-00047T-00; Thu, 26 Sep 2002 09:47:19 -0400 Original-Path: shelby.stanford.edu!nntp.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!news-out.cwix.com!newsfeed.cwix.com!newsfeed.mathworks.com!news.mathworks.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: 144.212.109.95 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Xref: nntp.stanford.edu gnu.emacs.help:105339 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:1891 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:1891 >>> Michael Slass seems to think that: >David Sumsky writes: > >>Hi all, >>I need only two simple things to work with my EMACS. >>Is there a way how to make SPEEDBAR to stay on top of all another >>windows/frames?!? >>Is it possible to configure SPEEDBAR via X window resources?!? >>I need to set fixed SPEEDBAR's position on the screen ... >>Thanks, Dave >> > >I don't know how to do the first part, but to fix the position, you >could add 'top and 'left cells to the speedbar-frame-parameters > >(add-hook > 'speedbar-mode-hook > (lambda () > (add-to-list 'speedbar-frame-parameters '(top . 0)) > (add-to-list 'speedbar-frame-parameters '(left . 0)))) You can make speedbar auto-raise with: (auto-raise-mode 1) in that same hook. To make speedbar stay on top, you can configure that with most window managers by providing speedbar's frame name. Eric