]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/repeat.el (describe-repeat-maps): More outlines and page separators.
authorJuri Linkov <juri@linkov.net>
Fri, 18 Nov 2022 07:19:23 +0000 (09:19 +0200)
committerJuri Linkov <juri@linkov.net>
Fri, 18 Nov 2022 07:19:23 +0000 (09:19 +0200)
lisp/repeat.el

index 6b2977205fed49f8064854b16bbd010b3f5cb4a3..33e8d98ce33493e5f6712108334553b6103ef7ef 100644 (file)
@@ -582,13 +582,15 @@ Used in `repeat-mode'."
                          (push s (alist-get (get s 'repeat-map) keymaps)))))
       (with-help-window (help-buffer)
         (with-current-buffer standard-output
-          (insert "A list of keymaps used by commands with the symbol property `repeat-map'.\n\n")
+          (insert "A list of keymaps used by commands with the symbol property `repeat-map'.\n")
 
           (dolist (keymap (sort keymaps (lambda (a b)
                                           (when (and (symbolp (car a))
                                                      (symbolp (car b)))
-                                            (string-lessp (car a) (car b))))))
-            (insert (format-message "* `%s'\n" (car keymap)))
+                                            (string< (car a) (car b))))))
+            (insert (format-message "\f\n* `%s'\n" (car keymap)))
+            (when (symbolp (car keymap))
+              (insert (substitute-command-keys (format-message "\\{%s}" (car keymap)))))
 
             (let* ((map (if (symbolp (car keymap))
                             (symbol-value (car keymap))
@@ -603,33 +605,34 @@ Used in `repeat-mode'."
               (setq commands-exit  (seq-difference map-commands repeat-commands))
 
               (when (or commands-enter commands-exit)
-                (insert "\n")
                 (when commands-enter
+                  (insert "\n** Entered with:\n\n")
                   (fill-region-as-paragraph
                    (point)
                    (progn
-                     (insert (concat "Entered with: "
-                                     (mapconcat (lambda (cmd)
-                                                  (format-message "`%s'" cmd))
-                                                (sort commands-enter #'string<)
-                                                ", ")
-                                     "\n"))
-                     (point))))
+                     (insert (mapconcat (lambda (cmd)
+                                          (format-message "`%s'" cmd))
+                                        (sort commands-enter #'string<)
+                                        ", "))
+                     (point)))
+                  (insert "\n"))
                 (when commands-exit
+                  (insert "\n** Exited with:\n\n")
                   (fill-region-as-paragraph
                    (point)
                    (progn
-                     (insert (concat "Exited with: "
-                                     (mapconcat (lambda (cmd)
-                                                  (format-message "`%s'" cmd))
-                                                (sort commands-exit #'string<)
-                                                ", ")
-                                     "\n"))
-                     (point))))))
-
-            (when (symbolp (car keymap))
-              (insert (substitute-command-keys (format-message "\\{%s}" (car keymap)))))
-            (insert "\n")))))))
+                     (insert (mapconcat (lambda (cmd)
+                                          (format-message "`%s'" cmd))
+                                        (sort commands-exit #'string<)
+                                        ", "))
+                     (point)))
+                  (insert "\n")))))
+
+          ;; Hide ^Ls.
+          (goto-char (point-min))
+          (while (search-forward "\n\f\n" nil t)
+           (put-text-property (1+ (match-beginning 0)) (1- (match-end 0))
+                               'invisible t)))))))
 
 (provide 'repeat)