[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/undo-fu 29a8c3d5a8 32/82: Use more prominent comment secti
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/undo-fu 29a8c3d5a8 32/82: Use more prominent comment sections |
Date: |
Thu, 7 Jul 2022 12:04:51 -0400 (EDT) |
branch: elpa/undo-fu
commit 29a8c3d5a8ccca33d8d8c029d6c25b0c5a2bc17a
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>
Use more prominent comment sections
---
.elisp-autofmt | 0
undo-fu.el | 15 ++++++++-------
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.elisp-autofmt b/.elisp-autofmt
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/undo-fu.el b/undo-fu.el
index ceadac2a3b..07746b6cfd 100644
--- a/undo-fu.el
+++ b/undo-fu.el
@@ -43,7 +43,8 @@
;;; Code:
-;; Custom variables.
+;; ---------------------------------------------------------------------------
+;; Custom Variables
(defcustom undo-fu-allow-undo-in-region nil
"When t, use `undo-in-region' when a selection is present.
@@ -52,8 +53,8 @@ causing undo-fu to work with reduced functionality when a
selection exists."
:group 'undo-fu
:type 'boolean)
-
-;; Internal variables.
+;; ---------------------------------------------------------------------------
+;; Internal Variables
;; First undo step in the chain, don't redo past this.
(defvar-local undo-fu--checkpoint nil)
@@ -68,8 +69,8 @@ causing undo-fu to work with reduced functionality when a
selection exists."
;; Only use when `undo-fu-allow-undo-in-region' is true.
(defvar-local undo-fu--in-region nil)
-
-;; Internal functions/macros.
+;; ---------------------------------------------------------------------------
+;; Internal Functions/Macros
(defun undo-fu--checkpoint-disable ()
"Disable check to prevent crossing the initial boundary when redoing."
@@ -135,8 +136,8 @@ Returns the number of steps to reach this list or
COUNT-LIMIT."
pending-undo-list)
list-to-find count-limit))
-
-;; Public functions.
+;; ---------------------------------------------------------------------------
+;; Public Functions
;;;###autoload
(defun undo-fu-only-redo-all ()
- [nongnu] elpa/undo-fu f883424345 36/82: readme: disable undo-tree in the evil-example, (continued)
- [nongnu] elpa/undo-fu f883424345 36/82: readme: disable undo-tree in the evil-example, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu f938ee2d94 38/82: Cleanup: pass in 'was-redo' as an argument, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 06772aef15 70/82: Use "undo" group, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu e07fd219a0 74/82: Sync backported functions from Emacs, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu c92261a3b7 80/82: Cleanup: use with-eval-after-load, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 1baca3da6b 03/82: Lookup key for keyboard-quit instead of hard coding in message, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu cad12914a4 15/82: Add 'undo-fu-allow-undo-in-region' option, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu a0e111b955 21/82: Add .elisp-autofmt to enable auto-formatting, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu d561fa8e0c 23/82: Fix #2 Support linear redo, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 459c90479d 24/82: Release 0.2, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 29a8c3d5a8 32/82: Use more prominent comment sections,
ELPA Syncer <=
- [nongnu] elpa/undo-fu d81063c96d 42/82: Cleanup: remove unnecessary checkpoint-is-blocking variable, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 0ce9ac3614 53/82: Cleanup: use updated auto-formatting results, ELPA Syncer, 2022/07/07
- [nongnu] elpa/undo-fu 20c9d6170a 77/82: Cleanup: simplify checks for clearing the checkpoint, ELPA Syncer, 2022/07/07