1 ;;; linum.el --- display line numbers in the left margin
3 ;; Copyright (C) 2008 Free Software Foundation, Inc.
5 ;; Author: Markus Triska <markus.triska@gmx.at>
7 ;; Keywords: convenience
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Display line numbers for the current buffer.
28 ;; Toggle display of line numbers with M-x linum-mode. To enable
29 ;; line numbering in all buffers, use M-x global-linum-mode.
33 (defconst linum-version
"0.9wx")
35 (defvar linum-overlays nil
"Overlays used in this buffer.")
36 (defvar linum-available nil
"Overlays available for reuse.")
37 (defvar linum-before-numbering-hook nil
38 "Functions run in each buffer before line numbering starts.")
40 (mapc #'make-variable-buffer-local
'(linum-overlays linum-available
))
43 "Show line numbers in the left margin."
47 (defcustom linum-format
'dynamic
48 "Format used to display line numbers.
49 Either a format string like \"%7d\", `dynamic' to adapt the width
50 as needed, or a function that is called with a line number as its
51 argument and should evaluate to a string to be shown on that line.
52 See also `linum-before-numbering-hook'."
57 '((t :inherit shadow
))
58 "Face for displaying line numbers in the display margin."
61 (defcustom linum-eager t
62 "Whether line numbers should be updated after each command.
63 The conservative setting `nil' might miss some buffer changes,
64 and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
68 (defcustom linum-delay t
69 "Delay updates to give Emacs a chance for other changes."
74 (define-minor-mode linum-mode
75 "Toggle display of line numbers in the left margin."
76 :lighter
"" ; for desktop.el
80 (add-hook 'post-command-hook
(if linum-delay
82 'linum-update-current
) nil t
)
83 (add-hook 'after-change-functions
'linum-after-change nil t
))
84 (add-hook 'window-scroll-functions
'linum-after-scroll nil t
)
85 ;; mistake in Emacs: window-size-change-functions cannot be local
86 (add-hook 'window-size-change-functions
'linum-after-size
)
87 (add-hook 'change-major-mode-hook
'linum-delete-overlays nil t
)
88 (add-hook 'window-configuration-change-hook
89 'linum-after-config nil t
)
90 (linum-update-current))
91 (remove-hook 'post-command-hook
'linum-update-current t
)
92 (remove-hook 'post-command-hook
'linum-schedule t
)
93 (remove-hook 'window-size-change-functions
'linum-after-size
)
94 (remove-hook 'window-scroll-functions
'linum-after-scroll t
)
95 (remove-hook 'after-change-functions
'linum-after-change t
)
96 (remove-hook 'window-configuration-change-hook
'linum-after-config t
)
97 (remove-hook 'change-major-mode-hook
'linum-delete-overlays t
)
98 (linum-delete-overlays)))
101 (define-globalized-minor-mode global-linum-mode linum-mode linum-on
)
104 (unless (minibufferp)
107 (defun linum-delete-overlays ()
108 "Delete all overlays displaying line numbers for this buffer."
109 (mapc #'delete-overlay linum-overlays
)
110 (setq linum-overlays nil
)
111 (dolist (w (get-buffer-window-list (current-buffer) nil t
))
112 (set-window-margins w
0)))
114 (defun linum-update-current ()
115 "Update line numbers for the current buffer."
116 (linum-update (current-buffer)))
118 (defun linum-update (buffer)
119 "Update line numbers for all windows displaying BUFFER."
120 (with-current-buffer buffer
122 (setq linum-available linum-overlays
)
123 (setq linum-overlays nil
)
125 (mapc #'linum-update-window
126 (get-buffer-window-list buffer nil
'visible
)))
127 (mapc #'delete-overlay linum-available
)
128 (setq linum-available nil
))))
130 (defun linum-update-window (win)
131 "Update line numbers for the portion visible in window WIN."
132 (goto-char (window-start win
))
133 (let ((line (line-number-at-pos))
134 (limit (1+ (window-end win t
)))
135 (fmt (cond ((stringp linum-format
) linum-format
)
136 ((eq linum-format
'dynamic
)
137 (let ((w (length (number-to-string
138 (count-lines (point-min) (point-max))))))
139 (concat "%" (number-to-string w
) "d")))))
143 (run-hooks 'linum-before-numbering-hook
)
144 ;; Create an overlay (or reuse an existing one) for each
145 ;; line visible in this window, if necessary.
146 (while (and (not (eobp)) (< (point) limit
))
148 (dolist (o (overlays-in (point) (point)))
149 (when (eq (overlay-get o
'linum-line
) line
)
150 (unless (memq o linum-overlays
)
151 (push o linum-overlays
))
152 (setq linum-available
(delete o linum-available
))
155 (propertize (format fmt line
) 'face
'linum
)
156 (funcall linum-format line
))))
157 (setq width
(max width
(length str
)))
159 (if (null linum-available
)
160 (setq ov
(make-overlay (point) (point)))
161 (setq ov
(pop linum-available
))
162 (move-overlay ov
(point) (point)))
163 (push ov linum-overlays
)
164 (setq str
(propertize " " 'display
`((margin left-margin
) ,str
)))
165 (overlay-put ov
'before-string str
)
166 (overlay-put ov
'linum-line line
)))
168 (setq line
(1+ line
)))
169 (set-window-margins win width
)))
171 (defun linum-after-change (beg end len
)
172 ;; update overlays on deletions, and after newlines are inserted
173 (when (or (= beg end
)
175 (string-match-p "\n" (buffer-substring-no-properties beg end
)))
176 (linum-update-current)))
178 (defun linum-after-scroll (win start
)
179 (linum-update (window-buffer win
)))
181 (defun linum-after-size (frame)
182 (linum-after-config))
184 (defun linum-schedule ()
185 ;; schedule an update; the delay gives Emacs a chance for display changes
186 (run-with-idle-timer 0 nil
#'linum-update-current
))
188 (defun linum-after-config ()
189 (walk-windows (lambda (w) (linum-update (window-buffer w
))) nil
'visible
))
191 (defun linum-unload-function ()
192 "Unload the Linum library."
193 (global-linum-mode -
1)
194 ;; continue standard unloading
199 ;; arch-tag: dea45631-ed3c-4867-8b49-1c41c80aec6a
200 ;;; linum.el ends here