From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Simple wiki system like VIMWiki Date: Fri, 07 Jan 2011 13:38:19 -0500 Message-ID: <87oc7sftk4.fsf@fastmail.fm> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=40595 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PbHCi-0007kA-Vm for emacs-orgmode@gnu.org; Fri, 07 Jan 2011 13:38:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PbHCh-0003a0-Qp for emacs-orgmode@gnu.org; Fri, 07 Jan 2011 13:38:24 -0500 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:35079) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PbHCh-0003Yw-IQ for emacs-orgmode@gnu.org; Fri, 07 Jan 2011 13:38:23 -0500 In-Reply-To: (Marcelo de Moraes Serpa's message of "Thu, 6 Jan 2011 09:07:57 -0600") 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: Marcelo de Moraes Serpa Cc: Org Mode Marcelo de Moraes Serpa writes: > However, linking and creating new files is far from optimal. Could you please explain what you mean here? I find C-u C-c C-l to be a very efficient way of creating file links (both to new and existing files). Also, the following two settings make it quite easy to open new links: (setq org-return-follows-link t) (setq org-open-non-existing-files t) > Org-mode still tries to keep things at the headline-level, instead of > at file level. Again, could you please explain what you mean by this? The following instructions will make org behave less like an outline and more like a tradition wiki (such as muse mode): 1. Create links with C-u C-c C-l (even better: rebind this to something simpler). 2. Use the settings above to open links easily. 3. [Optional] Set org-startup-folded to nil for a "full-page" view. 4. [Optional] Create a single wrapper function that creates a new link, opens the file, and adds the file to the list of agenda files. And since org-mode supports inline images and all sorts of hyperlinks, this will provide everything necessary for a nice wiki system. Well, almost everything.... I suppose the last step would be to modify org-wikinodes to allow CamelCase links to files. Best, Matt