From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Testing org-mode 4.37 (and a few suggestions) Date: Mon, 12 Jun 2006 11:59:53 +0200 Message-ID: <59e52ae3f21d0c6e1e651364fdea6e1b@science.uva.nl> References: <87ver788fn.fsf@tallis.ilo.ucl.ac.uk> 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 1FpjDE-0002u2-En for emacs-orgmode@gnu.org; Mon, 12 Jun 2006 06:00:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FpjDA-0002su-PD for emacs-orgmode@gnu.org; Mon, 12 Jun 2006 06:00:00 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FpjDA-0002sq-Md for emacs-orgmode@gnu.org; Mon, 12 Jun 2006 05:59:56 -0400 Received: from [194.134.35.145] (helo=smtp05.wanadoo.nl) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FpjLr-0006vv-JO for emacs-orgmode@gnu.org; Mon, 12 Jun 2006 06:08:55 -0400 In-Reply-To: <87ver788fn.fsf@tallis.ilo.ucl.ac.uk> 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: Bastien Cc: emacs-orgmode@gnu.org Hi Bastien, > * I like the new `org-export' behavior, but (1) the [t] key ("insert > the export option template") is not defined; (2) the [x] key (XOXO > export) is somewhat confusing, since no global C-x key is available > anymore (maybe use [O]?) I don't understand the second point. In what situation is there no global C-x key? While Org-mode is waiting for the key after `C-c C-e'? In this situation no command keys are available at all, so you need to press a key for a command, or C-g to abort. Am I misunderstanding something? > Suggestions: > > * Keeping stored link after insertion often depends on the link we > need to insert. So `org-keep-stored-link-after-insertion' is OK, > but some way to control this for every insertion (overriding the > default value of the variable above) would be useful. > > Maybe C-u C-u C-u C-c C-l is okay ? Hmm. 3 prefix args.... Nobody is going to use this. Needs something better. Maybe just a history. > > * What about a default description with stored links ? You mean a default for what will be inserted for the second pair of []? There are default for some links, but not for all. I'll check if we can have more. > For example, the default for a file would be the name of the file, > the default for a w3m buffer would be the title of the page, the > default for a bibtex entry would be some apalike (or user defined) > formatted string, and so on. > * org-narrow-to-current-level > > This is defined in org-blogging.el; i always use it when editing > some big org file. > > > (defun org-narrow-to-current-level nil > "Narrow to current level." I guess this could also be called narrow-to-subtree, and be written as (defun org-narrow-to-subtree () "" (interactive) (save-excursion (narrow-to-region (progn (org-back-to-heading) (point)) (progn (org-end-of-subtree t) (point))))) - Carsten