From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: navi equivalent to 'g' speed command? Date: Wed, 03 Sep 2014 09:59:10 +0200 Message-ID: <874mwp5e41.fsf@gmail.com> References: <878um15fz0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XP5Ta-0000do-Ur for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 03:59:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XP5TU-00069K-Qz for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 03:59:34 -0400 Received: from plane.gmane.org ([80.91.229.3]:57415) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XP5TU-00069E-Kg for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 03:59:28 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XP5TT-0005J6-1b for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 09:59:27 +0200 Received: from e178060075.adsl.alicedsl.de ([85.178.60.75]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Sep 2014 09:59:27 +0200 Received: from tjolitz by e178060075.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Sep 2014 09:59:27 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Thorsten Jolitz writes: > Alan Schmitt writes: > > Hello, > >> I very often use the org speed command 'g' to navigate to a headline >> (it opens a completion buffer that I can use to quickly fuzzy match the >> target). Is there an equivalent navi workflow for non-org buffer in >> outshine mode? > > Hmm... which command do you mean? I get > | g (org-refile t) > `---- > > but thats not the one you are talking about, right? I just tried it out - this ,---- | g (org-refile t) `---- works in Outshine like in Org when using the tj-outshine branch from the github repo, assuming you have ,---- | (setq outshine-use-speed-commands t) `---- in you init file. All 3 libs (outshine, outorg and navi-mode) have developed quite a bit recently, but I want to include better tests for outorg and implement most of Org-mode's user API (like e.g. org-refile) via the `outshine-use-outorg' function before I merge the tj-outshine, tj-outorg and tj-navi branches into their repective masters. Maybe you could switch to the git-versions? Would be great for me to have the development branches tested by somebody else, and you would get the `outshine-use-outorg' functionality, which (in theory at least) allows to call any Org command from Outshine. In the real world some commands work out of the box (e.g. org-refile and org-priority), but others would need some special handling (i.e. clocking with outshine headers works only 'more-or-less'). There are so many Org commands, it will take some time to check if they make sense in Outshine too, if they work out of the box or need some extra hacking. But with the development version of outshine, one can simply try if something like this works without any extra effort: #+BEGIN_SRC emacs-lisp (defun outshine-priority () "Call outorg to trigger `org-priority'." (interactive) (outshine-use-outorg 'org-priority)) #+END_SRC -- cheers, Thorsten