I use Remember to create a note on both the current day page and whatever plan page I specify (the default is the current plan page.) I usually create the source text for the note in the plan page, mark it, invoke C-u M-x remember, and then I delete that source text afterwards, since Remember creates its own copy. The prefix argument tells Remember to work with a region instead of the entire buffer.
With Remember, you can specify nil for the plan page, in which case the note gets created only on the day page. Just evaluate the following and give it a try! (require 'remember-planner) The cool thing about Remember is that if you use planner-multi, you can put notes on more than one plan page. (Maybe I should write, "The cool thing about planner-multi...."). I might put a note for a neat coding trick in these plan pages: SoftwareProject1, EduPlan, DataBaseTricks, NeatThings.... If I want a note to appear only on a single plan page, I just enter it directly on that page, preceding the note title with .#n, where n is the next note number. I also enjoy using planner-timewarp, which Sacha wrote just because I asked for it and because she's really nice. :-) It provides "back-dating" of notes. I use planner-timewarp to change the day page to the previous work day so I can generate notes with Remember that summarize what I did (if I can remember that far back.) HTH -- Raymond Zeitler <[EMAIL PROTECTED]> Date: Wed, 10 Aug 2005 20:21:34 +0100 From: Alex Kavanagh <[EMAIL PROTECTED]> Subject: Re: [emacs-wiki-discuss] Note on task page but not day page To: [EMAIL PROTECTED] (J. David Boyd) Cc: emacs-wiki-discuss@nongnu.org Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=US-ASCII At Wed, 10 Aug 2005 10:19:03 -0400, J. David Boyd wrote: > > > Is this possible to do. > > I'm starting to use planner with some of my tasks on day pages, and some on > plan pages. This way I can limit what shows up on the current day page, and I > can have that only contain major todo items, with the pointed to plan page > containing more details. > > But it seems that notes always show up in the current plan page, and the > current day page. > > What am I doing wrong, if anything? Nope, the function 'planner-create-note defaults to the current day page, and I must admit that I couldn't work out how to make it use the optional page-name apart from defining a new function that uses it. I want all my notes to appear on the page that I'm actually editing to I created the following and bound it to "C-c n" thus: (defun ajk/planner-create-note-this-page () (interactive) (planner-create-note (planner-page-name))) (define-key planner-mode-map (kbd "C-c n") 'ajk/planner-create-note-this-page) It's very simple and I haven't tested it fully but it works for me when I'm editing a plan page and I want to add a note. I'm sure I will vary it once I've explored working with notes more. Cheers Alex. _______________________________________________ emacs-wiki-discuss mailing list emacs-wiki-discuss@nongnu.org http://lists.nongnu.org/mailman/listinfo/emacs-wiki-discuss