Re: [Orgmode] howto refile to non-agenda file?

2009-05-25 Thread Eraldo Helal
Thank you Matt!

This helped me a lot!

Greetings,
Eraldo


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] howto refile to non-agenda file?

2009-05-25 Thread Eraldo Helal
At the moment I use:
(setq org-agenda-files (list org-directory))
to define which files should be used by the agenda.

However, I would like to exclude one file sitting in this directory
without having to put it in a subdirectory.

How would/could I do that... any idea?

Eraldo

On Tue, May 26, 2009 at 03:15, Eraldo Helal era...@eraldo.at wrote:
 Thank you Matt!

 This helped me a lot!

 Greetings,
 Eraldo



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] howto refile to non-agenda file?

2009-05-24 Thread Eraldo Helal
howto refile to non-agenda file?

I want to be able to refile projects to a reference.org file.
At the moment, if I create that file in the same directory as eraldo.org,
it will show up as refile option, but also in the agenda!

Another question I have is: How can I refile an item or tree to a new file?

Greetings,
Eraldo


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] howto refile to non-agenda file?

2009-05-24 Thread Matthew Lundin
Hi Eraldo,

Eraldo Helal era...@eraldo.at writes:

 howto refile to non-agenda file?

 I want to be able to refile projects to a reference.org file.
 At the moment, if I create that file in the same directory as eraldo.org,
 it will show up as refile option, but also in the agenda!

You can specify the files you'd like to refile to with
org-refile-targets. You can add as many additional files as you'd like,
indicating for each how deep you'd like the refile targets to descend
(i.e., 1st level, 2nd level, etc.).

Here's my current customization, to provide an example:

--8---cut here---start-8---
(setq org-refile-targets '((org-agenda-files :maxlevel . 2)
   (nil :maxlevel . 3)
   (~/mystuff/wiki/wiki.org :maxlevel . 1)))
--8---cut here---end---8---

 Another question I have is: How can I refile an item or tree to a new file?

You can create a new headline within a file when you refile, but I'm not
aware of any way to create a new file.

Regards,
Matt


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode