emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Create TODO item from anywhere
@ 2007-09-27 10:40 Richard G Riley
  2007-09-27 15:08 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Richard G Riley @ 2007-09-27 10:40 UTC (permalink / raw)
  To: emacs-orgmode


Hi, I am very new to org mode and have come across something which has
me faltering a little and I can't see the solution although I know it
must be there.

Here is my org mode setup:

,----
| (require 'org)
| (setq org-directory "~/org")
| (setq org-return-follows-link t)
| (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
| (define-key global-map "\C-cl" 'org-store-link)
| (define-key global-map "\C-ca" 'org-agenda)
| (setq org-log-done t)
| 
| (setq org-agenda-files (list 
| 			"~/org/mygtd.org"
| 			"~/org/register.org"
| 			))
| 
| (require 'remember)
| 
| (setq org-remember-templates
|       '(
| 	(?t "* TODO %?\n  %i\n  %a" "~/org/mygtd.org" "Tasks")
|         (?r "* %^{Title}\n  %i\n  %a" "~/org/register.org" "Register")
| 	)
|       )
| 
| (setq org-todo-keywords '("TODO" "FEEDBACK" "VERIFY" "DONE")
|       org-todo-interpretation 'sequence)
| 
| (setq remember-annotation-functions '(org-remember-annotation))
| (setq remember-handler-functions '(org-remember-handler))
| (add-hook 'remember-mode-hook 'org-remember-apply-template)
|
| (global-set-key (kbd "<f5> r") 'remember)
`----

The problem is that I can't see a function which I can bind to a global
key which can produce a TODO item without a link from anywhere. e.g I
might be in the *Scratch* buffer and want to create a TODO which has no
link back to the *Scratch* buffer. I don't really know lisp so cant delve
in the code. I'm sure its there somewhere and is totally obvious - isn't
it?

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

end of thread, other threads:[~2007-09-27 15:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-27 10:40 Create TODO item from anywhere Richard G Riley
2007-09-27 15:08 ` 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).