emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Automagically send all org table


From: Carsten Dominik
Subject: Re: [O] Automagically send all org table
Date: Mon, 14 Jan 2013 13:56:50 +0100

On 14 jan. 2013, at 11:25, Xavier Garrido <address@hidden> wrote:

> Hi orgmoders,
> 
> 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 ?
> 
> 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]