emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Adding user-defined task state for agenda


From: Kyle Meyer
Subject: Re: [O] Adding user-defined task state for agenda
Date: Thu, 29 Oct 2015 14:53:04 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Peter Davis <address@hidden> writes:

[...]

>>  Can you reproduce it with emacs -Q and a minimal Org configuration?
>
> I'm not sure how to do that.

You can put something like

    (add-to-list 'load-path "/path/to/your/org-mode/lisp/")
    (require 'org)

    (setq org-todo-keywords
          '((sequence "NOTE" "APPT" "TODO" "FEEDBACK" "VERIFY"
                      "|" "DONE" "DELEGATED" "CANCELLED")))

    (setq org-agenda-files '("/tmp/test.org"))

in a file, say org-minconfig.el.

And something like

    * NOTE h1

    * TODO h2

in /tmp/test.org.

Then, in the same directory as org-minconfig.el, start emacs with

    $ emacs -Q -l org-minconfig.el --visit /tmp/test.org

and see if running "M-x org-agenda T NOTE" lists the NOTE heading.

--
Kyle



reply via email to

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