From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: org-ctrl-c-ctrl-c in comments Date: Tue, 8 Dec 2015 08:36:53 -0800 Message-ID: References: <87zixlkzde.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6LG8-0006zB-LS for emacs-orgmode@gnu.org; Tue, 08 Dec 2015 11:37:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a6LG4-0001Q2-Ep for emacs-orgmode@gnu.org; Tue, 08 Dec 2015 11:37:00 -0500 Received: from iport-bcv2-out.ucsd.edu ([132.239.0.73]:29903) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6LG4-0001PR-6n for emacs-orgmode@gnu.org; Tue, 08 Dec 2015 11:36:56 -0500 In-Reply-To: <87zixlkzde.fsf@mat.ucm.es> 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: Uwe Brauer Cc: emacs-orgmode@gnu.org On Tue, 8 Dec 2015, Uwe Brauer wrote: > Hello > > I have some tables in comment blocks like > > #+begin_comment > | Col1 | Col2 | > | 1 | Name1 | > | 2 | Name2 | > | 3 | Name3 | > > #+end_comment > > But within a comment org-ctrl-c-ctrl-c does not work. So I cannot > reformat the table. How can I enable it? > Use an org src block and you will be able to edit natively via org-ctrl-c-ctrl-c. AFAICS, this behaves like `comment' in other respects. #+begin_src org :exports none :eval never | Col1 | Col2 | | 1 | Name1 | | 2 | Name2 | | 3 | Name3 | #+end_src HTH, Chuck