From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Integration of Org mode and mairix Date: Tue, 21 Aug 2007 14:38:58 +0200 Message-ID: <1e6e5afec2dedb8caf476b687dff48b5@science.uva.nl> References: <87k5spsw81.fsf@bzg.ath.cx> <87ejip7ud8.fsf@bzg.ath.cx> <876440tsul.fsf@presario.homelinux.org> <87k5sgpg6o.fsf@bzg.ath.cx> <87lkcqlppr.fsf@presario.homelinux.org> <87ps1z5iyk.fsf@bzg.ath.cx> <20070814112954.GE22472@atlantic.linksys.moosehall> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1INT0f-0007Bn-Hv for emacs-orgmode@gnu.org; Tue, 21 Aug 2007 08:39:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1INT0e-0007BF-3h for emacs-orgmode@gnu.org; Tue, 21 Aug 2007 08:39:01 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1INT0d-0007BA-U6 for emacs-orgmode@gnu.org; Tue, 21 Aug 2007 08:38:59 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1INT0d-0003OS-Rd for emacs-orgmode@gnu.org; Tue, 21 Aug 2007 08:39:00 -0400 In-Reply-To: <20070814112954.GE22472@atlantic.linksys.moosehall> 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: Adam Spiers Cc: emacs-orgmode@gnu.org On Aug 14, 2007, at 13:29, Adam Spiers wrote: > This leads to the other point I wanted to make, although its scope is > possibly too great for this list: I would greatly prefer any such > solution to allow hyperlinking from within other modes - muse in > particular. It may not be feasible to convince the different authors to use a single format for links. However, what I can offer is commands that allow you to use Org-mode-style links in any mode. Mind - these links might not be published correctly by muse - but maybe the Muse-maintainers can be persuaded to handle Org-mode links as well. Here are the commands, currently they will only work if orgstruct-mode has been activated at least once during the current Emacs session (because a special variable needs to be initialized). In 5.05, these commands will be part of org.el and work independently of orgstruct-mode. (defun org-open-at-point-global () "Follow a link like Org-mode does. This command can be called in any mode to follow a link that has Org-mode syntax." (interactive) (org-run-like-in-org-mode 'org-open-at-point)) (defun org-insert-link-global () "Insert a link like Org-mode does. This command can be called in any mode to follow a link that has Org-mode syntax." (interactive) (org-run-like-in-org-mode 'org-insert-link)) - Carsten