emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/latex-table-wizard 3bafcbefeb 49/70: Update commentary


From: ELPA Syncer
Subject: [elpa] externals/latex-table-wizard 3bafcbefeb 49/70: Update commentary section
Date: Sat, 13 May 2023 08:59:13 -0400 (EDT)

branch: externals/latex-table-wizard
commit 3bafcbefebd961ce9ebb479b60cdb1461cae8aa0
Author: Enrico Flor <nericoflor@gmail.com>
Commit: Enrico Flor <nericoflor@gmail.com>

    Update commentary section
---
 description.txt       | 24 -----------------------
 latex-table-wizard.el | 53 +++++++++++++++++++++++++--------------------------
 2 files changed, 26 insertions(+), 51 deletions(-)

diff --git a/description.txt b/description.txt
deleted file mode 100644
index bcd5160491..0000000000
--- a/description.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-Latex-table-wizard provides you with a transient based interface to
-edit large and complex LaTeX tables.  The entry point of the package
-is
-
-    M-x latex-table-wizard
-
-while point is inside of a table(-like) environment.  From there, you
-can do several things such as:
-
-+ navigate "logically" (that is, move by cells);
-
-+ insert or kill rows or column;
-
-+ move arbitrary cells or groups of cells around;
-
-+ align the table in different ways (however alignment is not needed
-  for the functionalities above).
-
-Standard LaTeX2e table environments are supported out of the box, but
-you can define additional ones.  The entry point for customization is
-
-    M-x latex-table-wizard-customize
-
-See the Info page for a complete overview of the package.
diff --git a/latex-table-wizard.el b/latex-table-wizard.el
index c35b6d9212..744d690ccd 100644
--- a/latex-table-wizard.el
+++ b/latex-table-wizard.el
@@ -31,36 +31,33 @@
 ;;; Commentary:
 
 ;; This package provides you with commands to smartly navigate and
-;; edit LaTeX table-like environments with a transient.el-based
-;; interface.  Table-like environments are portions of text delimited
-;; by a pair of matching "\begin" and "\end" macros that organize
-;; output text into aligned colums.
-
-;; With this package you can navigate and edit these tables easily
-;; even if the source text is not aligned (although there is a command
-;; to align them), because you will have movement commands that
-;; specfically target cells in the four directions of motion in a
-;; logical way.  This means that these movement and edit commands see
-;; the table as a set of pairs of values (for column and row) instead
-;; of as a buffer substring.
-
-;; This package tries to be smart and parse the table without being
-;; 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 command calls a
-;; transient prefix called latex-table-wizard-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 environment you want to edit when they are called.
+;; edit large and complex LaTeX table-like environments with a
+;; transient.el-based interface.  Table-like environments are portions
+;; of text delimited by a pair of matching "\begin" and "\end" macros
+;; that organize output text into aligned colums.
+
+;; The entry point of the package is
+
+;;     M-x latex-table-wizard
+
+;; while point is inside of a table(-like) environment.  From there, you
+;; can do several things such as:
+
+;; + navigate "logically" (that is, move by cells);
+;; + insert or kill rows or column;
+;; + move arbitrary cells or groups of cells around;
+;; + align the table in different ways (however alignment is not needed
+;;   for the functionalities above).
+
+;; Standard LaTeX2e table environments are supported out of the box, but
+;; you can define additional ones.  The entry point for customization is
+
+;;     M-x latex-table-wizard-customize
 
 ;; The keybinding set by default in the transient prefix are inspired
 ;; to some extent by Emacs defaults.  If you want to change these
 ;; keybindings you should change the value of the variable
-;; latex-table-wizard-transient-keys.  See the info page for
-;; explanations.
+;; latex-table-wizard-transient-keys.
 
 ;; By default, the syntax this package expects is the one of standards
 ;; LaTeX tabular environments, whereby "&" separates columns and "\\"
@@ -82,7 +79,9 @@
 ;;  '("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.  See the info page for explanations.
+;; have the same function.
+
+;; See the Info page for a complete overview of the package.
 
 ;;; Code:
 



reply via email to

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