From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Opening org Agenda whenever opening GNUs: Date: Sun, 24 Nov 2019 16:07:02 -0800 Message-ID: <87muck2509.fsf@ericabrahamsen.net> 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]:34681) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iZ1uZ-0000uS-0b for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 19:07:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iZ1uX-0006Lv-0q for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 19:07:26 -0500 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:44636 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iZ1uV-0006KG-S5 for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 19:07:24 -0500 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iZ1uR-000oUr-IL for emacs-orgmode@gnu.org; Mon, 25 Nov 2019 01:07:19 +0100 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: emacs-orgmode@gnu.org Spenser Truex writes: > Email is something I check often (with Gnus), so attaching my agenda to > it is a good way to stay on track. > > (defun my-instant-agenda () > (org-agenda-list nil)) > (add-hook 'gnus-before-startup-hook 'my-instant-agenda) > > I'd like to be able to have it split vertically, since it otherwise > obscures my view. How can I do that? > > > =============ACTUAL SETUP============= > +------------------------------------------+ > | Gnus | > | org-mailing list | > +------------------------------------------| > | | > | | > | ORG AGENDA | > | TODO: everything | > | DONE: nothing | > | | > | | > | | > +------------------------------------------+ > =============GOAL EMACS ARANGEMENT============= > +------------------------------------------+ > | Gnus | ORG AGENDA | > | org-mailing list | DONE: everything | > | Mom | TODO: other stuff | > | alt.sex | | > | | | > | | | > | | | > | | | > | | | > | | | > | | | > | | | > | | | > | | | > +------------------------------------------- What's your value of gnus-use-full-window? It defaults to t, and I wouldn't have expected that even your "actual setup" above would work. If you set that to nil, and then manually create the side-by-side layout with "C-x 3", is it preserved? I wrote a package called Gnorb that attempts to integrate Gnus and Org (and BBDB) a little more closely together, so this is something that I'm interested in. Gnorb can't currently do this sort of display, in part because Gnus's window management is gnarly, but it does provide for tagging Gnus messages with Org tags, and popping up agendas relevant to messages. I'll be curious to see how you progress with this...