emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [Sticky Agenda] How to create Agenda Buffers in functions


From: Max Mikhanosha
Subject: Re: [O] [Sticky Agenda] How to create Agenda Buffers in functions
Date: Tue, 03 Apr 2012 20:23:36 -0400
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.6 Emacs/23.3.50 (x86_64-unknown-linux-gnu) MULE/6.0 (HANACHIRUSATO)

At 3 Apr 2012 19:10:30 +0200,
Sven Bretfeld wrote:
> 
> Hi all
> 
> The Sticky Agenda is something I have been waiting for since a long
> time. Thank you very much!
> 
> I want to write a function that creates a new frame with several
> windows, each displaying a different Agenda Views. I fail to find a
> function that creates special agenda views. Formerly I used
> org-batch-agenda for similar purposes. But that doesn't work in the
> sticky branch. This is what I have:
> 
> (defun my-gtd-frame ()
>   (interactive)
>   (save-excursion)
>   (make-frame '(
>      (name                      . "gtd")
>      (active-alpha              . 0.75)
>      (inactive-alpha            . 0.8)
>      (top                       . 110) 
>      (left                      . 2000) 
>      (width                     . 80) 
>      (height                    . 40)
>      (font . "-Adobe-Courier-Medium-R-Normal--18-180-75-75-M-110-ISO8859-1")))
>   (select-frame-by-name "gtd")
>   (toggle-fullscreen)
>   (org-agenda-goto-today)
>   (delete-other-windows)
>   (split-window-horizontally)
>   (other-window 1)
>   (org-batch-agenda "OFFICE/NEXT")
> )
> 

This is the same bug as Martyn Jago reported earlier, basically I
forgot that separate org agenda commands can be run individually
rather then through (org-agenda) function.

A temporary workaround in your specific case would be to wrap
(org-batch-agenda) call like this:

(catch 'exit
  (org-batch-agenda "OFFICE/NEXT"))

I tested it and it seems to work.. The actual fix for the bug will be
similar and will be wrapping bodies of (org-todo-list) (org-tags-list)
and friends with (catch 'exit), but it needs to be done conditionally
as to only do it its called individually and not from (org-agenda)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]