From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: indirect buffer for properties Date: Sat, 21 May 2011 14:48:37 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNlbm-00027D-Kl for emacs-orgmode@gnu.org; Sat, 21 May 2011 08:48:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QNlbl-00021F-Gc for emacs-orgmode@gnu.org; Sat, 21 May 2011 08:48:42 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:47353) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNlbl-00021A-5z for emacs-orgmode@gnu.org; Sat, 21 May 2011 08:48:41 -0400 Received: by ewy9 with SMTP id 9so1693447ewy.0 for ; Sat, 21 May 2011 05:48:39 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Hi all What do you think about an indirect buffer for properties (or is there already one I don't know of yet?) that lets one view and maybe even edit all properties of the typically folded current heading of the primary buffer in an indirect buffer? It could be named "properties editor", defuned org-properties-to-indirect-buffer and work like org-tree-to-indirect-buffer (C-c C-x b) with the additional feature of changing the scope to the properties of the current heading when moving in the primary buffer, just like the field content of the new org-table-follow-field-mode for the "table field editor" introduced here: http://thread.gmane.org/gmane.emacs.orgmode/41584/focus=41846 An Org file: #+begin_src org ,* section ,** [#B] subsection , :PROPERTIES: , :prop: short , :property_with_long_key: property_with_long_value , :END: #+end_src opened in the state org-content and with point at "subsection" could show the indirect buffer for properties like this: /---------------------------------------------------/ / * section / / ** [#B] subsection... / / / /------ (the primary Org buffer) -------------------/ / :PRIORITY: B / / :prop: short / / :property_with_long_key: property_with_long_value / / / /------ (the indirect buffer for properties) -------/ Of course there are TAB on ":PROPERTIES:..." and column view but wouldn't this be very helpful at least for fast browsing of properties for use cases with longer properties or with a larger amount of properties in a single heading? Michael