From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: enhance wrap region in tables? Date: Mon, 14 Jan 2019 16:27:02 +0100 Message-ID: <874labfeex.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:41351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gj48u-0003EH-C4 for emacs-orgmode@gnu.org; Mon, 14 Jan 2019 10:27:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gj48t-00085i-OE for emacs-orgmode@gnu.org; Mon, 14 Jan 2019 10:27:12 -0500 Received: from [195.159.176.226] (port=60569 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gj48t-00084q-HF for emacs-orgmode@gnu.org; Mon, 14 Jan 2019 10:27:11 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1gj46j-0007In-6S for emacs-orgmode@gnu.org; Mon, 14 Jan 2019 16:24:57 +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" To: emacs-orgmode@gnu.org Hi Please consider #+begin_src elisp | Title | Title | |--------------------------+---------------------------| | First line. First colum | First line second column | | Second line. First colum | Second line, second colum | | | | #+end_src Now when I place the cursor in the first line and at the word first column and use the function org-table-wrap-region I obtain #+begin_src elisp | Title | Title | |--------------------------------------+---------------------------| | First line. | First line second column | | First colum Second line. First colum | Second line, second colum | | | | #+end_src Couldn't I obtain #+begin_src elisp | Title | Title | | | | |--------------------------+---------------------------| | First line. | First line second column | | First colum | | | Second line. First colum | Second line, second colum | | | | #+end_src Uwe Brauer