]> git.eshelyaron.com Git - emacs.git/commitdiff
* etc/NEWS: Add instructions for replacing 'linum'. (Bug#58220)
authorStefan Kangas <stefankangas@gmail.com>
Wed, 5 Oct 2022 23:32:59 +0000 (01:32 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 5 Oct 2022 23:33:19 +0000 (01:33 +0200)
etc/NEWS

index b616c5382ca7df18cd53cf21d9d4b4c88b100539..fc7d89719bc13b5db038c088d042cb6f140c95dc 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -443,6 +443,20 @@ We recommend using either the built-in 'display-line-numbers-mode', or
 the 'nlinum' package from GNU ELPA instead.  The former has better
 performance, but the latter is closer to a drop-in replacement.
 
+1. To use 'display-line-numbers-mode', add something like this to your
+   Init file:
+
+    (global-display-line-numbers-mode 1)
+    ;; Alternatively, to use it only in programming modes:
+    (add-hook 'prog-mode-hook #'display-line-numbers-mode)
+
+2. To use 'nlinum', add this to your Init file:
+
+    (package-install 'nlinum)
+    (global-nlinum-mode 1)
+    ;; Alternatively, to use it only in programming modes:
+    (add-hook 'prog-mode-hook #'nlinum-mode)
+
 ---
 ** The thumbs.el library is now obsolete.
 We recommend using 'M-x image-dired' instead.