From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: hyperlink to customize Date: Mon, 09 Dec 2013 16:14:53 -0500 Message-ID: <87r49lloaa.fsf@alphaville.bos.redhat.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vq8Ab-0005c4-Dw for emacs-orgmode@gnu.org; Mon, 09 Dec 2013 16:15:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vq8AS-00033u-9P for emacs-orgmode@gnu.org; Mon, 09 Dec 2013 16:15:13 -0500 Received: from plane.gmane.org ([80.91.229.3]:55589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vq8AS-000323-3E for emacs-orgmode@gnu.org; Mon, 09 Dec 2013 16:15:04 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vq8AO-0003rR-Mu for emacs-orgmode@gnu.org; Mon, 09 Dec 2013 22:15:00 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Dec 2013 22:15:00 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Dec 2013 22:15:00 +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 Brady Trainor writes: > As I climb the org-mode (and Emacs) learning curve, I like to have things > like hyperlinks to frequently visited places available. > > > > I can link to info, but not sure how to link to the customize, er, mode? > buffer? > > > > I assume I should consider it an external link, or anyways assume I should > use the elisp:blah method from http://orgmode.org/manual/External- > links.html#External-links. > > > > So, my naïve attempt is to use > > > > elisp:customize > > > > This does not work, any ideas? Custom links? In Lisp, the form (foo bar baz) says: call the function foo with arguments bar and baz. To call the customize function without arguments, you say (customize) so to call it from an elisp link, you say [[elisp:(customize)]] Calling arbitrary functions hidden behind links is potentially dangerous, so org-babel will nag you before evaluating the form and only carry out the evaluation if you answer the question positively. Nick