[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] org-goto-local-search-headings usage?
From: |
Nick Dokos |
Subject: |
Re: [O] org-goto-local-search-headings usage? |
Date: |
Tue, 15 May 2012 11:48:55 -0400 |
Myles English <address@hidden> wrote:
>
> Hi,
>
> Can anyone see what I am doing wrong here? I just want to open a file
> ~/tmp/gtd.org and goto the heading "* My workflow". So, starting like
> this:
>
> emacs -Q -l ~/tmp/gtd
>
> with ~/tmp/gtd:
>
> (add-to-list 'load-path
> "~/.emacs.d/plugins/org-mode/lisp")
> (require 'org-install) ;; to use the emacs-org-mode rather than the one
> ;; installed with emacs
>
> (defun gtd()
> (interactive)
> (find-file "~/tmp/gtd.org")
> (goto-char (point-min))
> (setq wf "My workflow")
> (org-goto-local-search-headings wf nil nil)
> )
>
> and ~/tmp/gtd.org:
>
> * My workflow
>
> then I do:
>
> M-x gtd
>
> and get the message:
>
> byte-code: Search failed: "My workflow"
>
Works for me: the cursor is placed at the end of the headline.
I tried both with just the one headline and also with half a
dozen.
Maybe M-x toggle-debug-on-error and try again to get a backtrace?
Or add
(setq debug-on-error t)
to your initialization file.
Nick
- [O] org-goto-local-search-headings usage?, Myles English, 2012/05/15
- Re: [O] org-goto-local-search-headings usage?,
Nick Dokos <=
- Re: [O] org-goto-local-search-headings usage?, Myles English, 2012/05/15
- Re: [O] org-goto-local-search-headings usage?, Nick Dokos, 2012/05/15
- Re: [O] org-goto-local-search-headings usage?, Nick Dokos, 2012/05/15
- Re: [O] org-goto-local-search-headings usage?, Myles English, 2012/05/16
- Re: [O] org-goto-local-search-headings usage?, Nicolas Goaziou, 2012/05/16
- Re: [O] org-goto-local-search-headings usage?, Myles English, 2012/05/16