emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Interaction with Remember
@ 2008-05-03 12:17 David Feest
  2008-05-03 14:48 ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: David Feest @ 2008-05-03 12:17 UTC (permalink / raw)
  To: emacs-orgmode

Hello, 

I'm new to org and like it very much!  thanks
for this fine and useful package -- trying
out all the possibilities will keep me
occupied for months to come!

Sorry about a very basic question that I
can't seem to figure out myself. I'm trying
to integrate remember.el according to the
documentation of org-mode (excellent
documentation BTW!). It seems to work fine at
first: When I type in: C-cr I'm being asked
to chose between different options. Choosing
"todo" gives me something like the following
buffer:

-----
## Filing location: Select interactively, default, or last used:
##     C-u C-c C-c  to select file and header location interactively.
##         C-c C-c  "~/texte/org/gtd.org" -> "* TODO"
## C-u C-u C-c C-c  "???" -> "* ???"
## To switch templates, use `C-c r'.  To abort use `C-c C-k'.

* TODO 

 [[file:~/texte/katja-cajanov.tex]]
----

However, typing in C-c C-c results in a promt
asking which file I want to use in
~/texte/org.  And actually choosing the file
gtd.org results in the file to be
overwritten. Shouldn't the entry jus be added
to the file instead promting for a file and
then overwriting it?

The settings in my .emacs file concerning
remember-mode look like this:

(require 'remember)
(org-remember-insinuate)
(setq remember-annotation-functions 
'(org-remember-annotation))
 (setq remember-handler-functions
'(org-remember-handler))
(add-hook 'remember-mode-hook
'org-remember-apply-template)
(setq org-directory "~/texte/org")
(setq org-default-notes-file (concat org-directory "notes.org"))

(setq org-remember-templates
 '(("Todo" ?t "* TODO %?\n %i\n %a" "/Users/david/texte/org/gtd.org" "Todo")
   ("Idee" ?i "* %^{Title}\n %i\n %a" "/Users/david/texte/org/gtd.org" "Ideas")))


Any idea what the reason could be?

Thanks in advance!

David

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Interaction with Remember
  2008-05-03 12:17 Interaction with Remember David Feest
@ 2008-05-03 14:48 ` Carsten Dominik
  2008-05-03 18:45   ` David Feest
  0 siblings, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2008-05-03 14:48 UTC (permalink / raw)
  To: David Feest; +Cc: emacs-orgmode

Hi David,

do you have a recent version of Org?  What is your Emacs version?

- Carsten

On May 3, 2008, at 2:17 PM, David Feest wrote:

> Hello,
>
> I'm new to org and like it very much!  thanks
> for this fine and useful package -- trying
> out all the possibilities will keep me
> occupied for months to come!
>
> Sorry about a very basic question that I
> can't seem to figure out myself. I'm trying
> to integrate remember.el according to the
> documentation of org-mode (excellent
> documentation BTW!). It seems to work fine at
> first: When I type in: C-cr I'm being asked
> to chose between different options. Choosing
> "todo" gives me something like the following
> buffer:
>
> -----
> ## Filing location: Select interactively, default, or last used:
> ##     C-u C-c C-c  to select file and header location interactively.
> ##         C-c C-c  "~/texte/org/gtd.org" -> "* TODO"
> ## C-u C-u C-c C-c  "???" -> "* ???"
> ## To switch templates, use `C-c r'.  To abort use `C-c C-k'.
>
> * TODO
>
> [[file:~/texte/katja-cajanov.tex]]
> ----
>
> However, typing in C-c C-c results in a promt
> asking which file I want to use in
> ~/texte/org.  And actually choosing the file
> gtd.org results in the file to be
> overwritten. Shouldn't the entry jus be added
> to the file instead promting for a file and
> then overwriting it?
>
> The settings in my .emacs file concerning
> remember-mode look like this:
>
> (require 'remember)
> (org-remember-insinuate)
> (setq remember-annotation-functions
> '(org-remember-annotation))
> (setq remember-handler-functions
> '(org-remember-handler))
> (add-hook 'remember-mode-hook
> 'org-remember-apply-template)
> (setq org-directory "~/texte/org")
> (setq org-default-notes-file (concat org-directory "notes.org"))
>
> (setq org-remember-templates
> '(("Todo" ?t "* TODO %?\n %i\n %a" "/Users/david/texte/org/gtd.org"  
> "Todo")
>   ("Idee" ?i "* %^{Title}\n %i\n %a" "/Users/david/texte/org/ 
> gtd.org" "Ideas")))
>
>
> Any idea what the reason could be?
>
> Thanks in advance!
>
> David
>
>
> _______________________________________________
> 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Interaction with Remember
  2008-05-03 14:48 ` Carsten Dominik
@ 2008-05-03 18:45   ` David Feest
  2008-05-06 13:39     ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: David Feest @ 2008-05-03 18:45 UTC (permalink / raw)
  To: emacs-orgmode


Hi, 

sorry about the insufficient information. Here it is:

GNU Emacs 22.1.1
Org Version: 6.01c

Greetings,

David
* Carsten Dominik <dominik@science.uva.nl> [080503 20:03]:
> Hi David,
> 
> do you have a recent version of Org?  What is your Emacs version?
> 
> - Carsten
> 
> On May 3, 2008, at 2:17 PM, David Feest wrote:
> 
> >Hello,
> >
> >I'm new to org and like it very much!  thanks
> >for this fine and useful package -- trying
> >out all the possibilities will keep me
> >occupied for months to come!
> >
> >Sorry about a very basic question that I
> >can't seem to figure out myself. I'm trying
> >to integrate remember.el according to the
> >documentation of org-mode (excellent
> >documentation BTW!). It seems to work fine at
> >first: When I type in: C-cr I'm being asked
> >to chose between different options. Choosing
> >"todo" gives me something like the following
> >buffer:
> >
> >-----
> >## Filing location: Select interactively, default, or last used:
> >##     C-u C-c C-c  to select file and header location interactively.
> >##         C-c C-c  "~/texte/org/gtd.org" -> "* TODO"
> >## C-u C-u C-c C-c  "???" -> "* ???"
> >## To switch templates, use `C-c r'.  To abort use `C-c C-k'.
> >
> >* TODO
> >
> >[[file:~/texte/katja-cajanov.tex]]
> >----
> >
> >However, typing in C-c C-c results in a promt
> >asking which file I want to use in
> >~/texte/org.  And actually choosing the file
> >gtd.org results in the file to be
> >overwritten. Shouldn't the entry jus be added
> >to the file instead promting for a file and
> >then overwriting it?
> >
> >The settings in my .emacs file concerning
> >remember-mode look like this:
> >
> >(require 'remember)
> >(org-remember-insinuate)
> >(setq remember-annotation-functions
> >'(org-remember-annotation))
> >(setq remember-handler-functions
> >'(org-remember-handler))
> >(add-hook 'remember-mode-hook
> >'org-remember-apply-template)
> >(setq org-directory "~/texte/org")
> >(setq org-default-notes-file (concat org-directory "notes.org"))
> >
> >(setq org-remember-templates
> >'(("Todo" ?t "* TODO %?\n %i\n %a" "/Users/david/texte/org/gtd.org"  
> >"Todo")
> >  ("Idee" ?i "* %^{Title}\n %i\n %a" "/Users/david/texte/org/ 
> >gtd.org" "Ideas")))
> >
> >
> >Any idea what the reason could be?
> >
> >Thanks in advance!
> >
> >David
> >
> >
> >_______________________________________________
> >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
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Interaction with Remember
  2008-05-03 18:45   ` David Feest
@ 2008-05-06 13:39     ` Carsten Dominik
  0 siblings, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2008-05-06 13:39 UTC (permalink / raw)
  To: David Feest; +Cc: emacs-orgmode

I cannot reproduce this.  Anyone?

- Carsten

On May 3, 2008, at 8:45 PM, David Feest wrote:

>
> Hi,
>
> sorry about the insufficient information. Here it is:
>
> GNU Emacs 22.1.1
> Org Version: 6.01c
>
> Greetings,
>
> David
> * Carsten Dominik <dominik@science.uva.nl> [080503 20:03]:
>> Hi David,
>>
>> do you have a recent version of Org?  What is your Emacs version?
>>
>> - Carsten
>>
>> On May 3, 2008, at 2:17 PM, David Feest wrote:
>>
>>> Hello,
>>>
>>> I'm new to org and like it very much!  thanks
>>> for this fine and useful package -- trying
>>> out all the possibilities will keep me
>>> occupied for months to come!
>>>
>>> Sorry about a very basic question that I
>>> can't seem to figure out myself. I'm trying
>>> to integrate remember.el according to the
>>> documentation of org-mode (excellent
>>> documentation BTW!). It seems to work fine at
>>> first: When I type in: C-cr I'm being asked
>>> to chose between different options. Choosing
>>> "todo" gives me something like the following
>>> buffer:
>>>
>>> -----
>>> ## Filing location: Select interactively, default, or last used:
>>> ##     C-u C-c C-c  to select file and header location  
>>> interactively.
>>> ##         C-c C-c  "~/texte/org/gtd.org" -> "* TODO"
>>> ## C-u C-u C-c C-c  "???" -> "* ???"
>>> ## To switch templates, use `C-c r'.  To abort use `C-c C-k'.
>>>
>>> * TODO
>>>
>>> [[file:~/texte/katja-cajanov.tex]]
>>> ----
>>>
>>> However, typing in C-c C-c results in a promt
>>> asking which file I want to use in
>>> ~/texte/org.  And actually choosing the file
>>> gtd.org results in the file to be
>>> overwritten. Shouldn't the entry jus be added
>>> to the file instead promting for a file and
>>> then overwriting it?
>>>
>>> The settings in my .emacs file concerning
>>> remember-mode look like this:
>>>
>>> (require 'remember)
>>> (org-remember-insinuate)
>>> (setq remember-annotation-functions
>>> '(org-remember-annotation))
>>> (setq remember-handler-functions
>>> '(org-remember-handler))
>>> (add-hook 'remember-mode-hook
>>> 'org-remember-apply-template)
>>> (setq org-directory "~/texte/org")
>>> (setq org-default-notes-file (concat org-directory "notes.org"))
>>>
>>> (setq org-remember-templates
>>> '(("Todo" ?t "* TODO %?\n %i\n %a" "/Users/david/texte/org/gtd.org"
>>> "Todo")
>>> ("Idee" ?i "* %^{Title}\n %i\n %a" "/Users/david/texte/org/
>>> gtd.org" "Ideas")))
>>>
>>>
>>> Any idea what the reason could be?
>>>
>>> Thanks in advance!
>>>
>>> David
>>>
>>>
>>> _______________________________________________
>>> 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
>>
>
>
> _______________________________________________
> 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-06 13:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-03 12:17 Interaction with Remember David Feest
2008-05-03 14:48 ` Carsten Dominik
2008-05-03 18:45   ` David Feest
2008-05-06 13:39     ` Carsten Dominik

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).