From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Testing org-mode 4.37 (and a few suggestions) Date: Mon, 12 Jun 2006 02:33:00 +0100 Message-ID: <87ver788fn.fsf@tallis.ilo.ucl.ac.uk> 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 1FpbIu-0006Ai-1P for emacs-orgmode@gnu.org; Sun, 11 Jun 2006 21:33:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FpbIp-0006AV-Jh for emacs-orgmode@gnu.org; Sun, 11 Jun 2006 21:33:18 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FpbIp-0006AR-Es for emacs-orgmode@gnu.org; Sun, 11 Jun 2006 21:33:15 -0400 Received: from [62.241.162.31] (helo=galaxy.systems.pipex.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FpbRR-0006Bu-LZ for emacs-orgmode@gnu.org; Sun, 11 Jun 2006 21:42:09 -0400 Received: from tallis.ilo.ucl.ac.uk (85-210-155-65.dsl.pipex.com [85.210.155.65]) by galaxy.systems.pipex.net (Postfix) with ESMTP id 98D23E0002DB for ; Mon, 12 Jun 2006 02:33:13 +0100 (BST) 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: emacs-orgmode@gnu.org Heya, some testing and suggestions... * `org-version' is 4.36b in the last release (should be 4.37, no ?) * 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]?) 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 ? * What about a default description with stored links ? 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." (interactive) (narrow-to-region (or (save-excursion (re-search-backward "^\\(\\*+\\) " nil t)) (point-min)) (or (save-excursion (re-search-forward (concat "^" (regexp-quote (substring (match-string 1) 0 (1- (length (match-string 1))))) "\\*? ") nil t) (match-beginning 0)) (point-min)))) Best regards, -- Bastien