From mboxrd@z Thu Jan 1 00:00:00 1970 From: Achim Gratz Subject: Re: Transpose or open functions for table cells Date: Tue, 01 Oct 2013 08:30:26 +0200 Message-ID: References: <20130927225252.GL12411@kuru.dyndns-at-home.com> <20130929215734.GV12411@kuru.dyndns-at-home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQtTr-00028Z-TO for emacs-orgmode@gnu.org; Tue, 01 Oct 2013 02:30:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VQtTk-0005Na-J9 for emacs-orgmode@gnu.org; Tue, 01 Oct 2013 02:30:47 -0400 Received: from plane.gmane.org ([80.91.229.3]:50063) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQtTk-0005NF-7L for emacs-orgmode@gnu.org; Tue, 01 Oct 2013 02:30:40 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VQtTj-0003hx-10 for emacs-orgmode@gnu.org; Tue, 01 Oct 2013 08:30:39 +0200 Received: from p578f135d.dip0.t-ipconnect.de ([87.143.19.93]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Oct 2013 08:30:39 +0200 Received: from Stromeko by p578f135d.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Oct 2013 08:30:39 +0200 In-Reply-To: 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: emacs-orgmode@gnu.org Am 30.09.2013 20:30, schrieb Michael Brand: > As soon as I remembered that there are org-table-cut-region and > org-table-paste-rectangle I could not resist the mental exercise for > fun to implement f-org-table-open-field-in-row-grow and > f-org-table-open-field-in-column-grow. The latter gets you from > > | a | b | c | > |---+----+---| > | d | 9 | e | > | f | 10 | g | > |---+----+---| > | h | 11 | i | > > to > > | a | b | c | > |---+----+---| > | d | | e | > | f | 9 | g | > |---+----+---| > | h | 10 | i | > | | 11 | | Arguably the expected outcome might be | a | b | c | |---+----+---| | d | | e | | f | 9 | g | | | 10 | | |---+----+---| | h | 11 | i | Regards, Achim.