From mboxrd@z Thu Jan 1 00:00:00 1970 From: Max Mikhanosha Subject: Re: Frames and the agenda Date: Fri, 24 Feb 2012 15:48:20 -0500 Message-ID: <878vjs6jqj.wl%max@openchat.com> References: Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1240-0003z0-RH for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S123z-000805-99 for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:24 -0500 Received: from openchat.com ([75.99.81.170]:35680 helo=momoland.openchat.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S123z-0007zf-53 for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:23 -0500 In-Reply-To: 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Marcelo de Moraes Serpa Check out my multiple-agenda-buffers branch from http://github.com/7max/org= -mode Its designed exactly for that (multiple independent agenda buffers living together). to enable it use, M-x org-toggle-sticky-agenda You will have to set different agenda names for different agenda views in your org-agenda-custom-commands variable like so: (setq org-agenda-custom-commands '(("a" "Agenda and NEXT (priority)" ((agenda "" ((org-agenda-span 'day))) (tags-todo "/!NEXT" ((org-agenda-overriding-header "Next Tasks") (org-agenda-tags-todo-honor-ignore-options t) (org-agenda-todo-ignore-scheduled t) (org-agenda-todo-ignore-deadlines t) (org-tags-match-list-sublevels t) (org-agenda-sorting-strategy '(priority-down category-keep))))) ((org-agenda-buffer-name "*Agenda*"))) ("t" "TODO entries" todo "" ((org-agenda-buffer-name "*Todo List*"))))) Carsten suggested that this will eventually get merged, but I think people may be afraid, as it's a bit of a major change, converting most agenda related variables to buffer local, and at least initially had a several bugs, which took me a few weeks to catch and fix. But I've been running on this branch for a month+, and quality of my org-moding had greatly improved, since now all my agendas pop-out immediately instead of rebuilding for several seconds. At Fri, 24 Feb 2012 12:38:39 -0600, Marcelo de Moraes Serpa wrote: >=20 > Hey guys, >=20 > So, I would like to keep a sort of dashboard in a osx virtual desktop - b= asically having emacs frames with different todo lists > for reference at quick glance: >=20 > http://minus.com/mlgjv21R4 >=20 > The problem is that the agenda is global to the emacs instance and won't = allow me to show a filter view in one frame and another > in the other (i.e: One frame showing all my personal TODOs and the other = showing all TODOs related to my job.).=C2=A0 >=20 > I could have those lists in separate files, but my configuration now has = all todos in a big gtd.org file. >=20 > Is there a way to have differente filters in different frames? If not, an= y thoughts on how I could accomplish this idea? >=20 > Thanks, >=20 > Marcelo. >=20 >=20