From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: Table: Insert Cell Date: Thu, 29 Jan 2015 14:43:16 -0500 Message-ID: <87bnlh5q5n.fsf@yale.edu> References: <874mr9tn3k.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGv4H-0007RO-QU for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 14:47:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGv48-0003rv-Oj for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 14:47:57 -0500 Received: from plane.gmane.org ([80.91.229.3]:50874) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGv48-0003r3-9W for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 14:47:48 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YGv46-0003Ja-OA for emacs-orgmode@gnu.org; Thu, 29 Jan 2015 20:47:46 +0100 Received: from nat-130-132-173-151.central.yale.edu ([130.132.173.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Jan 2015 20:47:46 +0100 Received: from jorge.alfaro-murillo by nat-130-132-173-151.central.yale.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Jan 2015 20:47:46 +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: emacs-orgmode@gnu.org Hi Tory, 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 | becomes | 1 | 2 | 3 | | | 4 | here | 5 | 6 | | 7 | 8 | 9 | | after C-c C-c 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 | 1 | 2 | 3 | | 4 | 5 | 6 | | 7 | 8 | 9 | | | | | Move below and to the right of the 8 | 1 | 2 | 3 | | 4 | 5 | 6 | | 7 | 8 | 9 | | | | | C- there, select until the left of the 5 | 1 | 2 | 3 | | 4 | 5 | 6 | | 7 | 8 | 9 | | | | | And then C-x r k, which cuts the rectangle, should get you to | 1 | 2 | 3 | | 4 | | 6 | | 7 | | 9 | | | | | move one cell down and use C-x r y | 1 | 2 | 3 | | 4 | | 6 | | 7 | 5 | 9 | | | 8 | | Finally, C-c C-c, gives you what you want | 1 | 2 | 3 | | 4 | | 6 | | 7 | 5 | 9 | | | 8 | | Best, -- Jorge.