From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Re: Keeping a wiki with org-mode Date: Sat, 13 Jun 2009 22:17:11 +0200 Message-ID: <87ljnvc2ig.fsf@kassiopeya.MSHEIMNETZ> References: <1e5bcefd0906121432hfc9efc1sf09710568c6c74d0@mail.gmail.com> <87k53fhppz.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MFZbK-0006va-09 for emacs-orgmode@gnu.org; Sat, 13 Jun 2009 16:13:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MFZbF-0006vO-Ht for emacs-orgmode@gnu.org; Sat, 13 Jun 2009 16:13:17 -0400 Received: from [199.232.76.173] (port=57143 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MFZbF-0006vL-E8 for emacs-orgmode@gnu.org; Sat, 13 Jun 2009 16:13:13 -0400 Received: from mail.gmx.net ([213.165.64.20]:56227) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MFZbE-00040i-Vo for emacs-orgmode@gnu.org; Sat, 13 Jun 2009 16:13:13 -0400 In-Reply-To: <87k53fhppz.fsf@fastmail.fm> (Matthew Lundin's message of "Sat, 13 Jun 2009 14:56:56 -0500") 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: Matthew Lundin Cc: emacs-orgmode@gnu.org Matthew Lundin writes: > Hi Marcelo, > > Marcelo de Moraes Serpa writes: > >> Hello, >> >> I wonder what is the best way to implement a wiki with org? I know you >> can hyperlink to anything, but what I was thinking was something >> automatic, like what WikiDPad does or Tomboy -- like having wikiwords >> (CamelCase) automatically linked as you type to a filename in the >> system (a specific directory you specify for the wiki). If it is not >> possible, it could be a nice addition for a future org version. >> > > As others have already mentioned, org-mode does not support CamelCase > words. But it's method for creating links is quite nice and allows org > to function very easily as a wiki. > > To make org-mode more "wiki-like," I add the following to my .emacs > file. The first variable has to come *before* org is loaded: > > > (setq org-return-follows-link t) > (setq org-open-non-existing-files t) Hm - then either the docs or the code has a bug. `C-h v org-open-non-existing-files' gives me this: org-open-non-existing-files is a variable defined in `org.el'. Its value is nil Documentation: Non-nil means, `org-open-file' will open non-existing files. When nil, an error will be generated. You can customize this variable. [back] As you can see, it says `org-open-non-existing-files' is nil. But still, I can follow the link without error (even with `debug-on-error' == t). I didn't notice that, since it's so natural to open such a file. It will become a physical file once I save it, so I cannot see a reason to avoid that. Sebastian