· Eric Abrahamsen wrote: >> >> [ ... snip ... ] >> >> [ ... snip completion issue with gnorb ... ] > > No worries, glad it's sorted! > >> But maybe someone can give me a hint how to get helm working here. >> >> As mentioned above I have >> >> #+begin_src emacs_lisp >> (setq org-refile-use-outline-path 'file) >> #+end_src >> >> Because I can travel along the path in steps >> >> file >> 1. Heading >> ... >> n. heading >> >> with completion working for each step. With helm enabled for `org-goto' >> and `org-refile' I see canditates for completion, but neither nor >> M-j have any effect. Minibuffer does not change. When I set >> `org-refile-use-outline-path' to nil, I get tons of candidates for >> completion but has also no effect. And if I hit with an >> incomplete input I get an error. This behaviour was the reason why I >> disabled helm for `org-refile' and `org-goto' to begin with. >> >> So has anyone helm working for `org-refile' and `org-goto'? I would >> appreciate any help here. Thanks. > > It works fine here! Have you started from "emacs -Q"? That's usually the > best first step. ok here is what I did to reproduce behavior with ECM emacs -Q -l "minimal.el" with minimal.el: #+begin_src emacs_lisp ;; minimal.el to test org-refile helm ;; most recent org-mode from git (add-to-list 'load-path "/home/thommy/git-emacs/org-mode/lisp") (require 'org) (setq org-use-speed-commands t) ;; `g' on begining of heading calls `(org-refile t)' (setq org-refile-use-outline-path 'file) (find-file "/home/thommy/git-emacs/gnorb/gnorb.org") ;; just any org-file works ;; most recent helm from git (add-to-list 'load-path "~/git-emacs/helm") (require 'helm-config) (helm-mode 1) #+end_src Now when I hit `g' at begining of a headline I get "gnorb.org" as a candidate for first step. But no key (, C - i, C - z) does completion. If I hit with partial or complete input for first step (e.g. "gn" or "gnorb.org") I get an error: progn: Wrong type argument: integer-or-marker-p, nil Backtrace: