From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: Transpose or open functions for table cells Date: Mon, 30 Sep 2013 20:30:57 +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 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52120) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQiFI-0004jM-6z for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 14:31:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VQiFG-0002Dd-VM for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 14:31:00 -0400 Received: from mail-lb0-x22e.google.com ([2a00:1450:4010:c04::22e]:48060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQiFG-0002DU-ND for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 14:30:58 -0400 Received: by mail-lb0-f174.google.com with SMTP id w6so4820266lbh.5 for ; Mon, 30 Sep 2013 11:30:57 -0700 (PDT) In-Reply-To: <20130929215734.GV12411@kuru.dyndns-at-home.com> 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: Suvayu Ali Cc: Emacs Org mode Hi Suvayu On Sun, Sep 29, 2013 at 11:57 PM, Suvayu Ali wrote: > Yes, the above allows easy rearrangement of table cells. I'm looking > for something that allows me to insert cells in a row or column. In my > example from the earlier email, I insert a cell in a column. 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 | | Please read again the rearranged http://orgmode.org/worg/org-hacks.html#field-same-row-or-column Michael