Hadron <[EMAIL PROTECTED]> writes: > When composing a mail in emacs/gnus is it possible to create an auto > numbering list/sequence of bullet points? > > e.g > > 1 - read gnus manual > 2 - install gnus > 3 - figure out how to get a list like this > > thanks for any info (clearly I dont want to use muse for this).
Write the list: - read gnus manual - install gnus - figure out how to get a list like this Type: M-: (setq i 0) RET Select the list, and type: M-x replace-regexp RET \(.*\) RET \,(format "%3d %s" (incf i) \1) RET 1 - read gnus manual 2 - install gnus 3 - figure out how to get a list like this -- __Pascal Bourguignon__ http://www.informatimago.com/ COMPONENT EQUIVALENCY NOTICE: The subatomic particles (electrons, protons, etc.) comprising this product are exactly the same in every measurable respect as those used in the products of other manufacturers, and no claim to the contrary may legitimately be expressed or implied. _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
