From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Kamm Subject: Re: Opening org Agenda whenever opening GNUs: Date: Mon, 25 Nov 2019 07:47:30 -0800 Message-ID: <87blt07yb1.fsf@gmail.com> References: <87r21x7pk1.fsf@spensertruex.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:35065) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iZGan-0007my-LJ for emacs-orgmode@gnu.org; Mon, 25 Nov 2019 10:48:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iZGam-0001Ww-Ei for emacs-orgmode@gnu.org; Mon, 25 Nov 2019 10:48:01 -0500 Received: from mail-pj1-x1032.google.com ([2607:f8b0:4864:20::1032]:34199) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iZGam-0001Wf-7J for emacs-orgmode@gnu.org; Mon, 25 Nov 2019 10:48:00 -0500 Received: by mail-pj1-x1032.google.com with SMTP id bo14so6781571pjb.1 for ; Mon, 25 Nov 2019 07:47:59 -0800 (PST) In-Reply-To: <87r21x7pk1.fsf@spensertruex.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Spenser Truex , emacs-orgmode@gnu.org > I'd like to be able to have it split vertically, since it otherwise > obscures my view. How can I do that? I haven't tested this, but I think the following would accomplish what you want: (defun my-instant-agenda () (let ((org-agenda-window-setup 'current-window)) (select-window (split-window-horizontally)) (org-agenda-list nil)))