From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Xah Lee Newsgroups: gmane.emacs.help Subject: Re: Table formatting (cell padding) and navigation Date: Wed, 23 May 2012 18:03:45 -0700 (PDT) Organization: http://groups.google.com Message-ID: <6d60e922-f7e1-4985-88e5-802f0206d30f@wp3g2000pbc.googlegroups.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1337838634 26212 80.91.229.3 (24 May 2012 05:50:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 24 May 2012 05:50:34 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 24 07:50:33 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SXQwN-0007RK-OM for geh-help-gnu-emacs@m.gmane.org; Thu, 24 May 2012 07:50:27 +0200 Original-Received: from localhost ([::1]:49759 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXQwN-0000I5-Dp for geh-help-gnu-emacs@m.gmane.org; Thu, 24 May 2012 01:50:27 -0400 Original-Path: usenet.stanford.edu!news.glorb.com!nx02.iad01.newshosting.com!newshosting.com!69.16.185.11.MISMATCH!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!postnews.google.com!wp3g2000pbc.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.emacs Original-Lines: 30 Original-NNTP-Posting-Host: 76.126.112.84 Original-X-Trace: posting.google.com 1337821425 8154 127.0.0.1 (24 May 2012 01:03:45 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Thu, 24 May 2012 01:03:45 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: wp3g2000pbc.googlegroups.com; posting-host=76.126.112.84; posting-account=bRPKjQoAAACxZsR8_VPXCX27T2YcsyMA User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.46 Safari/536.5,gzip(gfe) X-Received-Bytes: 2158 Original-Xref: usenet.stanford.edu gnu.emacs.help:192549 comp.emacs:102466 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84954 Archived-At: On May 22, 7:22=C2=A0pm, Avery Chan wrote: > I am using emacs 24.0.92.1 with the table psuedo-mode. > > 1) Is there a way to pad cells so that there is one or more spaces betwee= n the > text and the cell separator (i.e. '|')? > > 2) I realize that table mode isn't really a mode. Nonetheless I find doin= g C-h m > useful for finding out what keys are bound in a particular mode. Where ca= n I > find documentation on what key combinations are bound in table mode? In > particular, I'm trying to determine how to navigate within a table (for e= xample, > I found that tab sends me to the next cell). > > Thanks. C-h f then the command name, then click the link to see the source code. Then, search for word map. C-h m (describe-mode) is only for major mode. Minor mode doesn't have such documentation. i wrote a tutorial on table. Might be helpful. =E3=80=88Emacs: Working with Tables=E3=80=89 http://xahlee.org/emacs/emacs_table.html Xah