From mboxrd@z Thu Jan 1 00:00:00 1970 From: Niels Giesen Subject: scope of properties in a narrowed buffer, links in certain environments etc. Date: Tue, 16 Oct 2007 14:56:24 +0200 Message-ID: <4714B4F8.7050506@gmail.com> References: <4714a56f.1901360a.7cc7.ffffddb6SMTPIN_ADDED@mx.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhlwA-0001nn-E9 for emacs-orgmode@gnu.org; Tue, 16 Oct 2007 08:54:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ihlw8-0001nS-BF for emacs-orgmode@gnu.org; Tue, 16 Oct 2007 08:54:17 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ihlw8-0001nP-5z for emacs-orgmode@gnu.org; Tue, 16 Oct 2007 08:54:16 -0400 Received: from smtp-vbr8.xs4all.nl ([194.109.24.28]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ihlw7-0007ZS-Lt for emacs-orgmode@gnu.org; Tue, 16 Oct 2007 08:54:15 -0400 Received: from [127.0.0.1] (a82-93-219-144.adsl.xs4all.nl [82.93.219.144]) by smtp-vbr8.xs4all.nl (8.13.8/8.13.8) with ESMTP id l9GCsDdS013086 for ; Tue, 16 Oct 2007 14:54:13 +0200 (CEST) (envelope-from niels.giesen@gmail.com) In-Reply-To: <4714a56f.1901360a.7cc7.ffffddb6SMTPIN_ADDED@mx.google.com> 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 Hi Carsten and list, due to all the traffic on the list (Good Thing) and too much traffic on the railroad to work this morning (Bad Thing), I went reading up on the org-mode mailing list and installed the latest version today (was coming from 4.56), and trying to use column view and properties. Which are great. In my enthousiasm however, I discovered some bugs, especially after an `org-narrow-to-subtree'-call. Column view on a narrowed subtree does take into account the file-wide #+COLUMNS directive, but *not* the :COLUMNS: property of a parent tree outside of the narrowing. Actually, this issue seems to be larger: `org-set-property' does scan the whole file for properties, but prop_ALL from a parent tree outside of the narrowing does not have any effect on the values shown. In column view links are not propertised as links, so the full text shows. Also, C-c C-o does not work here to follow a link in a line (or rather: column). Whilst on the subject of links, in the agenda buffer, for some reason C-c C-o has trouble when a link is not on the end of a line. The following in org-agenda-open-link patch fixes this: (however, it will still just follow the /first/ link on the line) diff -w "c:/tmp/org-5.12c/org.el" "c:/tmp/org-5.12c/org2.el" 20251a20252 > (beginning-of-line) 20255c20256,20258 < (call-interactively 'org-open-at-point) --- > (progn > (beginning-of-line) > (call-interactively 'org-open-at-point)) Diff finished. Tue Oct 16 14:08:55 2007 Using Org-mode version 5.12c on "GNU Emacs 23.0.0.1 (i386-mingw-nt5.1.2600) of 2007-01-01 on DTOP" Greetings to you all! Niels Giesen