* Date tree view in org files created by remember.el @ 2010-01-01 6:52 Avinash Kulkarni 2010-01-01 17:29 ` Juan Reyero 0 siblings, 1 reply; 5+ messages in thread From: Avinash Kulkarni @ 2010-01-01 6:52 UTC (permalink / raw) To: emacs-orgmode [-- Attachment #1.1: Type: text/plain, Size: 592 bytes --] Hi, I am trying to get the following template to build a date-tree view in my org files that I use with remember mode. But I never seem to be able to get it - I am on Emacs 23.1 built for Mac OSX. Here are my remember templates: (setq org-remember-templates '(("Quick ToDo" ?n "* TODO %?\n %^{Scheduled for:}T\n" org-default-notes-file date-tree) ("Journal" ?j "* %T %?" "~/org/journal.org" date-tree) ("Timer" ?t "* %?\n" "~/org/timer.org" "Timed Tasks"))) What am I doing wrong with this template? Thank you for a wonderful tool like org mode! Regards, Avinash. [-- Attachment #1.2: Type: text/html, Size: 808 bytes --] [-- Attachment #2: Type: text/plain, Size: 201 bytes --] _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Date tree view in org files created by remember.el 2010-01-01 6:52 Date tree view in org files created by remember.el Avinash Kulkarni @ 2010-01-01 17:29 ` Juan Reyero 2010-01-01 17:43 ` Avinash Kulkarni 0 siblings, 1 reply; 5+ messages in thread From: Juan Reyero @ 2010-01-01 17:29 UTC (permalink / raw) To: Avinash Kulkarni, org-mode Mailing List Hi, On Fri, Jan 1, 2010 at 7:52 AM, Avinash Kulkarni <avinashgk@gmail.com> wrote: > I am trying to get the following template to build a date-tree view in my > org files that I use with remember mode. But I never seem to be able to get > it - I am on Emacs 23.1 built for Mac OSX. > > Here are my remember templates: > > (setq org-remember-templates > '(("Quick ToDo" ?n "* TODO %?\n %^{Scheduled for:}T\n" > org-default-notes-file date-tree) > ("Journal" ?j "* %T %?" "~/org/journal.org" date-tree) > ("Timer" ?t "* %?\n" "~/org/timer.org" "Timed Tasks"))) This looks very similar to mine, which works nicely in OS-X with emacs 23.1: (setq org-remember-templates '(("Jac" ?c "* %^{Title} :blog:\n :PROPERTIES:\n :on: %T\n :END:\n %?\n %x" "~/cjr/jac/jac.org" date-tree) ("Note" ?n "* %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %?\n %x" nil date-tree))) Did you remember to load it? (require 'remember) (org-remember-insinuate) Best, Juan -- http://juanreyero.com/ http://unarueda.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Date tree view in org files created by remember.el 2010-01-01 17:29 ` Juan Reyero @ 2010-01-01 17:43 ` Avinash Kulkarni 2010-01-01 17:51 ` Juan Reyero 0 siblings, 1 reply; 5+ messages in thread From: Avinash Kulkarni @ 2010-01-01 17:43 UTC (permalink / raw) To: Juan Reyero; +Cc: org-mode Mailing List [-- Attachment #1.1: Type: text/plain, Size: 1550 bytes --] Hi Juan, Thank you for the reply. Yeah, I already had those 2 lines in my .emacs file - and your template setup looks just like mine. I am using the Emacs Cocoa build from www.emacsformacosx.com, and its dated 2009-07-30. Are you using the same build too? Or does this date-tree feature require a later build of Emacs? Avinash. On Fri, Jan 1, 2010 at 12:29 PM, Juan Reyero <joanmg@gmail.com> wrote: > Hi, > > On Fri, Jan 1, 2010 at 7:52 AM, Avinash Kulkarni <avinashgk@gmail.com> > wrote: > > I am trying to get the following template to build a date-tree view in my > > org files that I use with remember mode. But I never seem to be able to > get > > it - I am on Emacs 23.1 built for Mac OSX. > > > > Here are my remember templates: > > > > (setq org-remember-templates > > '(("Quick ToDo" ?n "* TODO %?\n %^{Scheduled for:}T\n" > > org-default-notes-file date-tree) > > ("Journal" ?j "* %T %?" "~/org/journal.org" date-tree) > > ("Timer" ?t "* %?\n" "~/org/timer.org" "Timed Tasks"))) > > This looks very similar to mine, which works nicely in OS-X with emacs > 23.1: > > (setq org-remember-templates > '(("Jac" ?c > "* %^{Title} :blog:\n :PROPERTIES:\n :on: %T\n :END:\n %?\n > %x" > "~/cjr/jac/jac.org" date-tree) > ("Note" ?n > "* %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %?\n %x" > nil date-tree))) > > Did you remember to load it? > > (require 'remember) > (org-remember-insinuate) > > Best, > > Juan > -- > http://juanreyero.com/ > http://unarueda.com > [-- Attachment #1.2: Type: text/html, Size: 2505 bytes --] [-- Attachment #2: Type: text/plain, Size: 201 bytes --] _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Date tree view in org files created by remember.el 2010-01-01 17:43 ` Avinash Kulkarni @ 2010-01-01 17:51 ` Juan Reyero 2010-01-01 18:53 ` Avinash Kulkarni 0 siblings, 1 reply; 5+ messages in thread From: Juan Reyero @ 2010-01-01 17:51 UTC (permalink / raw) To: Avinash Kulkarni, org-mode Mailing List Hi Avinash, On Fri, Jan 1, 2010 at 6:43 PM, Avinash Kulkarni <avinashgk@gmail.com> wrote: > Hi Juan, > Thank you for the reply. Yeah, I already had those 2 lines in my .emacs file > - and your template setup looks just like mine. I am using the Emacs Cocoa > build from www.emacsformacosx.com, and its dated 2009-07-30. Are you using > the same build too? Same. But your problem is most likely with the version of org-mode, not with emacs. Do you have 6.33? I actually keep rather close track with git, but 6.33 is the minimum you'll need. Best, Juan > On Fri, Jan 1, 2010 at 12:29 PM, Juan Reyero <joanmg@gmail.com> wrote: >> >> Hi, >> >> On Fri, Jan 1, 2010 at 7:52 AM, Avinash Kulkarni <avinashgk@gmail.com> >> wrote: >> > I am trying to get the following template to build a date-tree view in >> > my >> > org files that I use with remember mode. But I never seem to be able to >> > get >> > it - I am on Emacs 23.1 built for Mac OSX. >> > >> > Here are my remember templates: >> > >> > (setq org-remember-templates >> > '(("Quick ToDo" ?n "* TODO %?\n %^{Scheduled for:}T\n" >> > org-default-notes-file date-tree) >> > ("Journal" ?j "* %T %?" "~/org/journal.org" date-tree) >> > ("Timer" ?t "* %?\n" "~/org/timer.org" "Timed Tasks"))) >> >> This looks very similar to mine, which works nicely in OS-X with emacs >> 23.1: >> >> (setq org-remember-templates >> '(("Jac" ?c >> "* %^{Title} :blog:\n :PROPERTIES:\n :on: %T\n :END:\n %?\n >> %x" >> "~/cjr/jac/jac.org" date-tree) >> ("Note" ?n >> "* %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %?\n %x" >> nil date-tree))) >> >> Did you remember to load it? >> >> (require 'remember) >> (org-remember-insinuate) >> >> Best, >> >> Juan >> -- >> http://juanreyero.com/ >> http://unarueda.com > > -- http://juanreyero.com/ http://unarueda.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Date tree view in org files created by remember.el 2010-01-01 17:51 ` Juan Reyero @ 2010-01-01 18:53 ` Avinash Kulkarni 0 siblings, 0 replies; 5+ messages in thread From: Avinash Kulkarni @ 2010-01-01 18:53 UTC (permalink / raw) To: Juan Reyero; +Cc: org-mode Mailing List [-- Attachment #1.1: Type: text/plain, Size: 2274 bytes --] Thanks Juan. That did the trick! I moved to 6.33f, and the outline mode now shows up as a date-tree, which is how I would like to think of my journal entries as :) Happy New Year! On Fri, Jan 1, 2010 at 12:51 PM, Juan Reyero <joanmg@gmail.com> wrote: > Hi Avinash, > > On Fri, Jan 1, 2010 at 6:43 PM, Avinash Kulkarni <avinashgk@gmail.com> > wrote: > > Hi Juan, > > Thank you for the reply. Yeah, I already had those 2 lines in my .emacs > file > > - and your template setup looks just like mine. I am using the Emacs > Cocoa > > build from www.emacsformacosx.com, and its dated 2009-07-30. Are you > using > > the same build too? > > Same. But your problem is most likely with the version of org-mode, > not with emacs. Do you have 6.33? I actually keep rather close track > with git, but 6.33 is the minimum you'll need. > > Best, > > Juan > > > On Fri, Jan 1, 2010 at 12:29 PM, Juan Reyero <joanmg@gmail.com> wrote: > >> > >> Hi, > >> > >> On Fri, Jan 1, 2010 at 7:52 AM, Avinash Kulkarni <avinashgk@gmail.com> > >> wrote: > >> > I am trying to get the following template to build a date-tree view in > >> > my > >> > org files that I use with remember mode. But I never seem to be able > to > >> > get > >> > it - I am on Emacs 23.1 built for Mac OSX. > >> > > >> > Here are my remember templates: > >> > > >> > (setq org-remember-templates > >> > '(("Quick ToDo" ?n "* TODO %?\n %^{Scheduled for:}T\n" > >> > org-default-notes-file date-tree) > >> > ("Journal" ?j "* %T %?" "~/org/journal.org" date-tree) > >> > ("Timer" ?t "* %?\n" "~/org/timer.org" "Timed Tasks"))) > >> > >> This looks very similar to mine, which works nicely in OS-X with emacs > >> 23.1: > >> > >> (setq org-remember-templates > >> '(("Jac" ?c > >> "* %^{Title} :blog:\n :PROPERTIES:\n :on: %T\n :END:\n %?\n > >> %x" > >> "~/cjr/jac/jac.org" date-tree) > >> ("Note" ?n > >> "* %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %?\n %x" > >> nil date-tree))) > >> > >> Did you remember to load it? > >> > >> (require 'remember) > >> (org-remember-insinuate) > >> > >> Best, > >> > >> Juan > >> -- > >> http://juanreyero.com/ > >> http://unarueda.com > > > > > > > > -- > http://juanreyero.com/ > http://unarueda.com > [-- Attachment #1.2: Type: text/html, Size: 3892 bytes --] [-- Attachment #2: Type: text/plain, Size: 201 bytes --] _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-01-01 18:53 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-01-01 6:52 Date tree view in org files created by remember.el Avinash Kulkarni 2010-01-01 17:29 ` Juan Reyero 2010-01-01 17:43 ` Avinash Kulkarni 2010-01-01 17:51 ` Juan Reyero 2010-01-01 18:53 ` Avinash Kulkarni
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).