From mboxrd@z Thu Jan 1 00:00:00 1970 From: torys.anderson@gmail.com (Tory S. Anderson) Subject: Re: Table: Insert Cell Date: Thu, 29 Jan 2015 15:44:49 -0500 Message-ID: <87bnlhs4e6.fsf@gmail.com> References: <874mr9tn3k.fsf@gmail.com> <87bnlh5q5n.fsf@yale.edu> <84twz9bap9.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGvxP-0006UG-HQ for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 15:44:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGvxL-0003ru-Nt for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 15:44:55 -0500 Received: from mail-yk0-x22d.google.com ([2607:f8b0:4002:c07::22d]:62898) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGvxL-0003rq-Ji for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 15:44:51 -0500 Received: by mail-yk0-f173.google.com with SMTP id 142so15284183ykq.4 for ; Thu, 29 Jan 2015 12:44:51 -0800 (PST) In-Reply-To: <84twz9bap9.fsf@gmail.com> (Marco Wahl's message of "Thu, 29 Jan 2015 21:20:34 +0100") 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: Marco Wahl Cc: emacs-orgmode@gnu.org Wow! That's great! One of my next projects is going to have to be putting that little sequence into a function! Marco Wahl writes: > jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) writes: >> Tory S. Anderson writes: >> >>> Does anyone know a solution for the surely common case of needing to >>> insert a cell (not a column or row) into an orgmode table? >>> Spreadsheet programs allow the option of pushing the column down or >>> pushing the cells right in this case. How can this be achieved in >>> orgmode? >> >> I do not think that there is a command for that. For pushing the row, >> it is trivial just write the new cell >> >> | 1 | 2 | 3 | >> | 4 | 5 | 6 | >> | 7 | 8 | 9 | >> >> | 1 | 2 | 3 | >> | 4 | here|5 | 6 | >> | 7 | 8 | 9 | >> >> [...] >> >> For pushing the column, you can use kill-rectangle after inserting >> another row >> >> | 1 | 2 | 3 | >> | 4 | 5 | 6 | >> | 7 | 8 | 9 | >> >> TAB on the 9 cell >>[...] >> Finally, C-c C-c, gives you what you want >> >> | 1 | 2 | 3 | >> | 4 | | 6 | >> | 7 | 5 | 9 | >> | | 8 | | > > This could be the day of org-table-transpose-table-at-point. > > | 1 | 2 | 3 | > | 4 | 5 | 6 | > | 7 | 8 | 9 | > > org-table-transpose-table-at-point > > | 1 | 4 | 7 | > | 2 | 5 | 8 | > | 3 | 6 | 9 | > > | 1 | 4 | 7 | > | 2 || 5 | 8 | > | 3 | 6 | 9 | > > C-c C-c > > | 1 | 4 | 7 | | > | 2 | | 5 | 8 | > | 3 | 6 | 9 | | > > org-table-transpose-table-at-point > > | 1 | 2 | 3 | > | 4 | | 6 | > | 7 | 5 | 9 | > | | 8 | | > > > Regards, Marco