all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* emacs speedbar configuration
@ 2002-09-25 18:09 David Sumsky
  2002-09-25 19:05 ` Michael Slass
  0 siblings, 1 reply; 3+ messages in thread
From: David Sumsky @ 2002-09-25 18:09 UTC (permalink / raw)


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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: emacs speedbar configuration
  2002-09-25 18:09 emacs speedbar configuration David Sumsky
@ 2002-09-25 19:05 ` Michael Slass
  2002-09-26 13:38   ` Eric Ludlam
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Slass @ 2002-09-25 19:05 UTC (permalink / raw)


David Sumsky <xsumsky@fi.muni.cz> 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))))   


-- 
Mike Slass

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: emacs speedbar configuration
  2002-09-25 19:05 ` Michael Slass
@ 2002-09-26 13:38   ` Eric Ludlam
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Ludlam @ 2002-09-26 13:38 UTC (permalink / raw)


>>> Michael Slass <miknrene@drizzle.com> seems to think that:
>David Sumsky <xsumsky@fi.muni.cz> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-09-26 13:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-25 18:09 emacs speedbar configuration David Sumsky
2002-09-25 19:05 ` Michael Slass
2002-09-26 13:38   ` Eric Ludlam

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.