all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* ABC index
@ 2020-10-27 21:23 Emanuel Berg via Users list for the GNU Emacs text editor
  2020-10-27 22:12 ` Daniel Martín
  0 siblings, 1 reply; 6+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-10-27 21:23 UTC (permalink / raw)
  To: help-gnu-emacs

A friend asked how to do this

Kate Moss
Elle Macpherson
Alicia Silverstone

into this

A Kate Moss
B Elle Macpherson
C Alicia Silverstone

No idea why!

Anyway, ABC index contest! Elisp and keyboard macros allowed!

Here is contribution CONTRIBUTION by Yours Truly:

(require 'cl-lib)
(defun index-abc (&optional beg end)
  (interactive (if (use-region-p)
                   (list (region-beginning) (region-end))
                 (list (point-min) (point-max) )))
  (save-excursion
    (save-restriction
      (narrow-to-region beg end)
      (goto-char (point-min))
      (cl-loop for i from ?A to ?Z do
               (when (re-search-forward "^" nil t)
                 (insert (char-to-string i) " ") )))))

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-10-28  3:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-27 21:23 ABC index Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-27 22:12 ` Daniel Martín
2020-10-27 22:19   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-28  2:13     ` Leo Butler
2020-10-28  2:38       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-28  3:08   ` Dante Catalfamo

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.