diff options
| author | Glenn Morris | 2012-02-09 21:33:01 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-02-09 21:33:01 -0500 |
| commit | 72ca698cb9543315c914f3548eea2512f8dffe7a (patch) | |
| tree | d6dae0ef17dd0e74b38fdb15d42afccc03c295be | |
| parent | af8556d26534d26cd809f1cf43b4f4ecfd9359d0 (diff) | |
| download | emacs-72ca698cb9543315c914f3548eea2512f8dffe7a.tar.gz emacs-72ca698cb9543315c914f3548eea2512f8dffe7a.zip | |
* doc/lispref/modes.texi (Basic Major Modes): Mention tabulated-list-mode.
* etc/NEWS: Related markup.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 14 | ||||
| -rw-r--r-- | etc/NEWS | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 0546ec9e936..a823f4272fc 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-02-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * modes.texi (Basic Major Modes): Mention tabulated-list-mode. | ||
| 4 | |||
| 1 | 2012-02-08 Glenn Morris <rgm@gnu.org> | 5 | 2012-02-08 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * loading.texi (Named Features): Update the require example. | 7 | * loading.texi (Named Features): Update the require example. |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 052fd037167..0b020bee0b0 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -915,6 +915,20 @@ mode, which is used by the @samp{*Buffer List*} buffer. @xref{List | |||
| 915 | Buffers,,Listing Existing Buffers, emacs, The GNU Emacs Manual}. | 915 | Buffers,,Listing Existing Buffers, emacs, The GNU Emacs Manual}. |
| 916 | @end deffn | 916 | @end deffn |
| 917 | 917 | ||
| 918 | @cindex tables of data | ||
| 919 | @deffn Command tabulated-list-mode | ||
| 920 | Tabulated List mode is another mode that derives from Special mode. It | ||
| 921 | displays tabulated data, i.e. a series of rows and columns, where each | ||
| 922 | row represents a particular entry, whose properties are displayed in the | ||
| 923 | various columns. It provides a general mechanism for sorting on | ||
| 924 | columns. You can use Tabulated List mode as the basis for other modes | ||
| 925 | that need to display lists. For example, the @samp{*Packages*} buffer | ||
| 926 | uses this (@pxref{Packages,,, emacs, The GNU Emacs Manual}). The | ||
| 927 | documentation of the @code{tabulated-list-mode} function explains what | ||
| 928 | you need to do to use it. At a minimum, specify the column format via | ||
| 929 | the @code{tabulated-list-format} variable. | ||
| 930 | @end deffn | ||
| 931 | |||
| 918 | @node Generic Modes | 932 | @node Generic Modes |
| 919 | @subsection Generic Modes | 933 | @subsection Generic Modes |
| 920 | @cindex generic mode | 934 | @cindex generic mode |
| @@ -968,6 +968,7 @@ When enabled, typing certain characters triggers reindentation. | |||
| 968 | ** New global minor mode electric-layout-mode. | 968 | ** New global minor mode electric-layout-mode. |
| 969 | When enabled, typing certain characters automatically inserts newlines. | 969 | When enabled, typing certain characters automatically inserts newlines. |
| 970 | 970 | ||
| 971 | +++ | ||
| 971 | ** tabulated-list.el provides a generic major mode for tabulated data, | 972 | ** tabulated-list.el provides a generic major mode for tabulated data, |
| 972 | from which other modes can be derived. | 973 | from which other modes can be derived. |
| 973 | 974 | ||