From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: org mode as tabbed notebook Date: Fri, 07 May 2010 09:55:02 -0400 Message-ID: <87zl0bn7ex.fsf@fastmail.fm> References: <4BE3B5F7.1030507@gmail.com> 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 1OAO1I-0000Wr-Iu for emacs-orgmode@gnu.org; Fri, 07 May 2010 09:55:12 -0400 Received: from [140.186.70.92] (port=55345 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OAO1H-0000VP-1k for emacs-orgmode@gnu.org; Fri, 07 May 2010 09:55:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OAO1E-0000Bm-Tk for emacs-orgmode@gnu.org; Fri, 07 May 2010 09:55:10 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:44575) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAO1E-0000Ba-RT for emacs-orgmode@gnu.org; Fri, 07 May 2010 09:55:08 -0400 In-Reply-To: <4BE3B5F7.1030507@gmail.com> (katepano@gmail.com's message of "Fri, 07 May 2010 09:40:55 +0300") 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: katepano Cc: emacs-orgmode@gnu.org katepano writes: > I was wondering if somebody managed to use orgmode as atabbed > notebook, like gjots, or the old keynotes program from windows which I > miss a lot or even Ms one note. I tried using tabbed.el or speedbar, > or the sitemap of orgmode but it was not satisfactory. Any way how you > manage to have a lot of files open simultaneously, with the buffer > list? One easy way to switch org-buffers is to use C-c b (org-iswitchb) in conjunction with ido, which allows for fuzzy matching. I have the following settings in my emacs file: --8<---------------cut here---------------start------------->8--- (ido-mode 1) (ido-everywhere 1) (setq ido-confirm-unique-completion t) (setq ido-enable-flex-matching t) ;; will use ffap-guesser to determine whether file name is at point (setq ido-use-filename-at-point 'guess) (setq org-completion-use-ido t) --8<---------------cut here---------------end--------------->8--- Note that these settings also make ido the default interface for switch-to-buffer and find-file. Best, Matt