From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard G Riley Subject: Create TODO item from anywhere Date: Thu, 27 Sep 2007 12:40:24 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iaqmk-0007Z6-Ee for emacs-orgmode@gnu.org; Thu, 27 Sep 2007 06:39:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iaqmh-0007X1-PC for emacs-orgmode@gnu.org; Thu, 27 Sep 2007 06:39:57 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iaqmh-0007Wf-Ii for emacs-orgmode@gnu.org; Thu, 27 Sep 2007 06:39:55 -0400 Received: from ug-out-1314.google.com ([66.249.92.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Iaqmh-0003nL-7b for emacs-orgmode@gnu.org; Thu, 27 Sep 2007 06:39:55 -0400 Received: by ug-out-1314.google.com with SMTP id m4so1499262uge for ; Thu, 27 Sep 2007 03:39:53 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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 " 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?