From mboxrd@z Thu Jan 1 00:00:00 1970 From: David O'Toole Subject: org-mode issues i'm having Date: Fri, 28 Apr 2006 11:02:07 -0400 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 1FZUU3-000842-Pw for emacs-orgmode@gnu.org; Fri, 28 Apr 2006 11:02:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FZUU0-0007zw-Ps for emacs-orgmode@gnu.org; Fri, 28 Apr 2006 11:02:13 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FZUU0-0007zh-EX for emacs-orgmode@gnu.org; Fri, 28 Apr 2006 11:02:12 -0400 Received: from [66.249.82.201] (helo=xproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FZUX9-00043q-Vu for emacs-orgmode@gnu.org; Fri, 28 Apr 2006 11:05:28 -0400 Received: by xproxy.gmail.com with SMTP id s13so1472741wxc for ; Fri, 28 Apr 2006 08:02:11 -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 1. Links that target specific text in a file, do not work properly: - [[file:~/emacs/org-4.27/org.el::defcustom%20org%20after%20todo%20state%20change%20hook%20nil][file:~/emacs/org-4.27/org.el::defcustom org after todo state change hook nil]] - [[file:~/emacs/org-4.27/org.el::defvar%20org%20todo%20line%20regexp%20nil][file:~/emacs/org-4.27/org.el::defvar org todo line regexp nil]] The above were made with "C-c l" (org-store-link). When opening with C-c C-o, I expect it to locate point near the search text, but it doesn't. If the file is not being visited currently, it simply locates point at the beginning of the file. If the file is being visited, it doesn't move point. Am I missing something? 2. Remember support doesn't work properly. After hitting C-c C-c, the little "place your text in the outline tree" help comes up, and I can move the cursor a little, but I don't see ANY tree or text from the outline, just a blank window behind the help text. I'm using CVS emacs and configuring org like this: ---------------------------- (add-to-list 'load-path "/home/dto/emacs/org-4.27") (load "org") (load "remember") (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) (define-key global-map "\C-cr" 'remember) (setq org-log-done t) (setq org-fontify-emphasized-text t) (setq org-fontify-done-headline t) (setq org-agenda-include-all-todo nil) (setq org-directory "~/org") (setq org-default-notes-file "~/org/Remember.org") (setq org-export-html-style "") (setq org-export-with-section-numbers nil) (setq org-export-with-toc nil) (setq org-reverse-note-order t) ;; note at beginning of file by default. (setq org-adapt-indentation nil) (setq remember-annotation-functions '(org-remember-annotation)) (setq remember-handler-functions '(org-remember-handler)) (add-hook 'remember-mode-hook 'org-remember-apply-template) ;; widen category field a little (setq org-agenda-prefix-format " %-15:c%?-12t% s") -- Dave O'Toole dto@gnu.org