From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: org links and outshine Date: Fri, 07 Nov 2014 11:16:21 +0100 Message-ID: <87bnoj2u4q.fsf@gmail.com> References: <87vbmzq2di.fsf@uw.edu> <87bnormbld.fsf@gmail.com> <874mug3dzp.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xmgas-0006Tz-K5 for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 05:16:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xmgan-0003S2-EH for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 05:16:38 -0500 Received: from plane.gmane.org ([80.91.229.3]:50556) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xmgan-0003Qm-8C for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 05:16:33 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xmgal-0001PV-7w for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 11:16:31 +0100 Received: from g231104217.adsl.alicedsl.de ([92.231.104.217]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Nov 2014 11:16:31 +0100 Received: from tjolitz by g231104217.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Nov 2014 11:16:31 +0100 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 Alan Schmitt writes: Hi Alan, > On 2014-11-03 09:06, Thorsten Jolitz writes: > >> Grant Rettke writes: >> >>> On Sat, Nov 1, 2014 at 5:58 AM, Thorsten Jolitz >>> wrote: >>>> And there is a new library >>>> >>>> [[http://goo.gl/pYYzS6][outorg-export]] >>> >>> I just used http://goo.gl/pYYzS6 and it worked fine; that looks like >>> an org mode link. >> >> It is an Org-mode link inserted with C-c C-l while writing the post in >> the *outorg-edit-buffer*, in case this was a question. > > I'll seize this opportunity to ask about this: I have my emacs init file > in outshine syntax, and inside it there are several links (to info > pages, to gnus messages, and so on). They look great and can be acted > upon in org mode, but not so great in lisp mode. Could it be possible > for outshine to nicely display these links? nice display of links is done with overlays in Org-mode, see e. #+BEGIN_SRC emacs-lisp (defun org-toggle-link-display () "Toggle the literal or descriptive display of links." (interactive) (if org-descriptive-links (progn (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock) (setq org-descriptive-links nil)) (progn (add-to-invisibility-spec '(org-link)) (org-restart-font-lock) (setq org-descriptive-links t)))) #+END_SRC and it might be easy to port this to outshine, unfortunately I have _no_ time right now, maybe you could have a look yourself (patches very welcome). Another requested feature is making the :ARCHIVE: tag work in outshine, something I definitely would like to have too, maybe thats related to 'invisibility-spec' too (hide archived subtrees when doing visibility cycling), but unfortuntely right now I cannot investigate. -- cheers, Thorsten