From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Boeters Newsgroups: gmane.emacs.help Subject: Default position of speedbar frame Date: Fri, 13 Mar 2009 16:27:49 -0700 (PDT) Organization: http://groups.google.com Message-ID: <5205c703-051f-4cb3-a366-2c3005bb7bc1@p11g2000yqe.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1236987637 9720 80.91.229.12 (13 Mar 2009 23:40:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Mar 2009 23:40:37 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Mar 14 00:41:54 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LiH0j-0002NG-V9 for geh-help-gnu-emacs@m.gmane.org; Sat, 14 Mar 2009 00:41:54 +0100 Original-Received: from localhost ([127.0.0.1]:46000 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LiGzO-0007Zd-1J for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Mar 2009 19:40:30 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!news.glorb.com!news2.glorb.com!postnews.google.com!p11g2000yqe.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 30 Original-NNTP-Posting-Host: 86.83.157.195 Original-X-Trace: posting.google.com 1236986869 32657 127.0.0.1 (13 Mar 2009 23:27:49 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Fri, 13 Mar 2009 23:27:49 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: p11g2000yqe.googlegroups.com; posting-host=86.83.157.195; posting-account=8aiz-goAAAD3nAwn5Por5_ulvDj5K9Dt User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7,gzip(gfe),gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:167539 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:62895 Archived-At: There is an old thread ("Define geometry of speedbar window?" of 1999) where options to define the default position of the speedbar have been intensively discussed: http://groups.google.de/group/gnu.emacs.help/browse_thread/thread/a8779f23992f671 However, there didn't seem to be a clear outcome. In my attempt to position the speedbar at the left uppermost corner of the screen, I tried the following suggested additions to the _emacs file: A) (setq speedbar-frame-parameters '((top . 0) (left . 0))) B) (require 'speedbar) (add-to-list 'speedbar-frame-parameters '(top . 0)) (add-to-list 'speedbar-frame-parameters '(left . 0) C) (defun arc-spedbar() (interactive) (speedbar) (set-frame-position (selected-frame) 0 0)) None of these was successful. -- Has anyone a further hint? Stefan