From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Automagically send all org table Date: Mon, 14 Jan 2013 13:56:50 +0100 Message-ID: <9420AA9D-B0C7-446E-B899-60E3710FEE4E@gmail.com> References: <50F3DD17.5070705@gmail.com> Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:53969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tujb5-00011A-J9 for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 07:57:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tujax-0003sj-V3 for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 07:57:03 -0500 Received: from mail-ee0-f50.google.com ([74.125.83.50]:60751) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tujax-0003sR-Ow for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 07:56:55 -0500 Received: by mail-ee0-f50.google.com with SMTP id e51so1272824eek.9 for ; Mon, 14 Jan 2013 04:56:53 -0800 (PST) In-Reply-To: <50F3DD17.5070705@gmail.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: Xavier Garrido Cc: emacs-orgmode@gnu.org On 14 jan. 2013, at 11:25, Xavier Garrido = wrote: > Hi orgmoders, >=20 > I am looking for a simple way to SEND all org tables in a given = document to their RECEIVER counterparts. Of course, I can go through the = whole document and do `org-table-send` one-by-one but I would like to do = it without opening the document and for all tables at the same time. Is = there a way ? >=20 > Thanks for your help and advices, > Xavier Hi Xavier, this should do the trick (untested): (defun my-org-send-all-tables () (interactive) (org-table-map-tables (lambda () (orgtbl-send-table 'maybe)))) HTH - Carsten=