[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/latex-table-wizard e3119802f7 15/70: Expand Commentary
From: |
ELPA Syncer |
Subject: |
[elpa] externals/latex-table-wizard e3119802f7 15/70: Expand Commentary section |
Date: |
Sat, 13 May 2023 08:59:10 -0400 (EDT) |
branch: externals/latex-table-wizard
commit e3119802f7ab2060ed6e44e92ab8ea935fbbc25f
Author: Enrico Flor <nericoflor@gmail.com>
Commit: Enrico Flor <nericoflor@gmail.com>
Expand Commentary section
---
latex-table-wizard.el | 50 ++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 42 insertions(+), 8 deletions(-)
diff --git a/latex-table-wizard.el b/latex-table-wizard.el
index 22362a2c47..21f64e4232 100644
--- a/latex-table-wizard.el
+++ b/latex-table-wizard.el
@@ -40,17 +40,51 @@
;; movement commands that specfically target cells in the four
;; directions of motion.
-;; By default, the syntax this package expects is the one of standards
-;; LaTeX tabular environments, whereby "&" separates columns and "\\"
-;; separates rows. Additional, or different, separators can be added
-;; by appending the correct regexp strings to the variable
-;; latex-table-wizard-column-delimiters and
-;; latex-table-wizard-row-delimiters.
-
;; This package tries to be smart and not be fooled by the presence of
;; embedded environments and embedded tables (that is, a table inside
;; of the cell of a table).
+;; The only command you need to remember (and perhaps bind a
+;; conveniente key to) is latex-table-wizard-do. This is actually a
+;; transient prefix, so that all the other commands will be available
+;; from a prompt in the echo area. All the commands provided by this
+;; package (including latex-table-wizard-do) assume that point is
+;; inside of the table-like enviornment you want to edit when they are
+;; called.
+
+;; The keybinding set by default in the prefix latex-table-wizard-do
+;; are inspired to some extent by Emacs defaults. If you want to
+;; change these keybindings or change the layout of the transient
+;; interface in any way you should redefine the transient prefix in
+;; your configuration (or define a new one with another name), by
+;; taking inspiration from the one defined in this file (the macro
+;; that does that is called transient-define-prefix). Check out the
+;; documentation transient.el and
+;;
+;; M-x describe-function transient-define-prefix
+
+;; By default, the syntax this package expects is the one of standards
+;; LaTeX tabular environments, whereby "&" separates columns and "\\"
+;; separates rows. Additional, or different, types of table-like
+;; environments (with their own syntax separators) can be added by the
+;; user. This is done by adding mappings to
+;; latex-table-wizard-new-environments-alist. Suppose I want to
+;; define a new table like environment whose name is "mytable", whose
+;; column and row separators are strings like "\COL" and "\ROW", and
+;; the LaTeX macro to add a horizontal line is "\myhline{}":
+
+;; \begin{mytable}
+;; ...
+;; \end{mytable}
+
+;; For latex-table-wizard to handle this table, just add the following
+;; cons cell to latex-table-wizard-new-environments-alist:
+
+;; '("mytable" . (:col '("\\COL") :row '("\\ROW") :lines '("myhline")))
+
+;; Each value is a list of strings to allow for more than one macro to
+;; have the same function.
+
;;; Code:
;;; Dependencies
@@ -136,7 +170,7 @@ The cdr of each mapping is a property list with three keys:
:row
:lines
-The values for :col and :row are two lists of regexps.
+The values for :col and :row are two lists of strings.
The value for :lines is a list of strings just like is the case
for `latex-table-wizard-hline-macros'.")
- [elpa] externals/latex-table-wizard 293bbfc9ed 18/70: Actually remove function definition made useless, (continued)
- [elpa] externals/latex-table-wizard 293bbfc9ed 18/70: Actually remove function definition made useless, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 7ac03c0a51 26/70: Correct readme, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard a53d3f6158 30/70: Version 0.2.0, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard a0e0aff19c 31/70: Reduce the need to re-parse the table, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 482380db44 38/70: Update docstring, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 02ddb6e01c 41/70: Fix bug occurring when in Emacs 27, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 230bb852fa 43/70: Add .texi file, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 723e619753 09/70: Generalize insert functions, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard b4b8b8bf52 13/70: Update readme for 0.0.3, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard de5a922da6 14/70: Remove useless calls to format, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard e3119802f7 15/70: Expand Commentary section,
ELPA Syncer <=
- [elpa] externals/latex-table-wizard 3b53c528c7 19/70: Clarify commentary and fix typo, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 1abac6974f 08/70: Fix problem when no space before delimiters, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 809dff99ef 11/70: Make syntax-quoted forms everywhere, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 74d169f8df 20/70: Two bug fixes, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 4f3f4011ab 22/70: Add group for face and remove before-save-hook, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard acdd4d8b56 23/70: New interactive function that calls transient prefix, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard da4a2e3540 24/70: Made into a minor mode, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard f9fb0ae878 28/70: Cleanup and some bug fixed, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard 9ce3165694 32/70: Add center and right alignment, ELPA Syncer, 2023/05/13
- [elpa] externals/latex-table-wizard e3553c7759 34/70: Add feedback about cell jumps, ELPA Syncer, 2023/05/13