Backport 2011-06-04T11:02:37Z!deniz@dogan.se (Bug#8799) from trunk
[emacs.git] / lisp / linum.el
blobb7e69e2a7c646d605efc28f0c2943718635685c1
1 ;;; linum.el --- display line numbers in the left margin
3 ;; Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 ;; Author: Markus Triska <markus.triska@gmx.at>
6 ;; Maintainer: FSF
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/>.
24 ;;; Commentary:
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.
31 ;;; Code:
33 (defconst linum-version "0.9x")
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))
42 (defgroup linum nil
43 "Show line numbers in the left margin."
44 :group 'convenience)
46 ;;;###autoload
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'."
53 :group 'linum
54 :type 'sexp)
56 (defface linum
57 '((t :inherit (shadow default)))
58 "Face for displaying line numbers in the display margin."
59 :group 'linum)
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."
65 :group 'linum
66 :type 'boolean)
68 (defcustom linum-delay nil
69 "Delay updates to give Emacs a chance for other changes."
70 :group 'linum
71 :type 'boolean)
73 ;;;###autoload
74 (define-minor-mode linum-mode
75 "Toggle display of line numbers in the left margin."
76 :lighter "" ; for desktop.el
77 (if linum-mode
78 (progn
79 (if linum-eager
80 (add-hook 'post-command-hook (if linum-delay
81 'linum-schedule
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 ;; Using both window-size-change-functions and
86 ;; window-configuration-change-hook seems redundant. --Stef
87 ;; (add-hook 'window-size-change-functions 'linum-after-size nil t)
88 (add-hook 'change-major-mode-hook 'linum-delete-overlays nil t)
89 (add-hook 'window-configuration-change-hook
90 ;; FIXME: If the buffer is shown in N windows, this
91 ;; will be called N times rather than once. We should use
92 ;; something like linum-update-window instead.
93 'linum-update-current nil t)
94 (linum-update-current))
95 (remove-hook 'post-command-hook 'linum-update-current t)
96 (remove-hook 'post-command-hook 'linum-schedule t)
97 ;; (remove-hook 'window-size-change-functions 'linum-after-size t)
98 (remove-hook 'window-scroll-functions 'linum-after-scroll t)
99 (remove-hook 'after-change-functions 'linum-after-change t)
100 (remove-hook 'window-configuration-change-hook 'linum-update-current t)
101 (remove-hook 'change-major-mode-hook 'linum-delete-overlays t)
102 (linum-delete-overlays)))
104 ;;;###autoload
105 (define-globalized-minor-mode global-linum-mode linum-mode linum-on)
107 (defun linum-on ()
108 (unless (minibufferp)
109 (linum-mode 1)))
111 (defun linum-delete-overlays ()
112 "Delete all overlays displaying line numbers for this buffer."
113 (mapc #'delete-overlay linum-overlays)
114 (setq linum-overlays nil)
115 (dolist (w (get-buffer-window-list (current-buffer) nil t))
116 (set-window-margins w 0 (cdr (window-margins w)))))
118 (defun linum-update-current ()
119 "Update line numbers for the current buffer."
120 (linum-update (current-buffer)))
122 (defun linum-update (buffer)
123 "Update line numbers for all windows displaying BUFFER."
124 (with-current-buffer buffer
125 (when linum-mode
126 (setq linum-available linum-overlays)
127 (setq linum-overlays nil)
128 (save-excursion
129 (mapc #'linum-update-window
130 (get-buffer-window-list buffer nil 'visible)))
131 (mapc #'delete-overlay linum-available)
132 (setq linum-available nil))))
134 (defun linum-update-window (win)
135 "Update line numbers for the portion visible in window WIN."
136 (goto-char (window-start win))
137 (let ((line (line-number-at-pos))
138 (limit (window-end win t))
139 (fmt (cond ((stringp linum-format) linum-format)
140 ((eq linum-format 'dynamic)
141 (let ((w (length (number-to-string
142 (count-lines (point-min) (point-max))))))
143 (concat "%" (number-to-string w) "d")))))
144 (width 0))
145 (run-hooks 'linum-before-numbering-hook)
146 ;; Create an overlay (or reuse an existing one) for each
147 ;; line visible in this window, if necessary.
148 (while (and (not (eobp)) (<= (point) limit))
149 (let* ((str (if fmt
150 (propertize (format fmt line) 'face 'linum)
151 (funcall linum-format line)))
152 (visited (catch 'visited
153 (dolist (o (overlays-in (point) (point)))
154 (when (equal-including-properties
155 (overlay-get o 'linum-str) str)
156 (unless (memq o linum-overlays)
157 (push o linum-overlays))
158 (setq linum-available (delq o linum-available))
159 (throw 'visited t))))))
160 (setq width (max width (length str)))
161 (unless visited
162 (let ((ov (if (null linum-available)
163 (make-overlay (point) (point))
164 (move-overlay (pop linum-available) (point) (point)))))
165 (push ov linum-overlays)
166 (overlay-put ov 'before-string
167 (propertize " " 'display `((margin left-margin) ,str)))
168 (overlay-put ov 'linum-str str))))
169 ;; Text may contain those nasty intangible properties, but that
170 ;; shouldn't prevent us from counting those lines.
171 (let ((inhibit-point-motion-hooks t))
172 (forward-line))
173 (setq line (1+ line)))
174 (set-window-margins win width (cdr (window-margins win)))))
176 (defun linum-after-change (beg end len)
177 ;; update overlays on deletions, and after newlines are inserted
178 (when (or (= beg end)
179 (= end (point-max))
180 (string-match-p "\n" (buffer-substring-no-properties beg end)))
181 (linum-update-current)))
183 (defun linum-after-scroll (win start)
184 (linum-update (window-buffer win)))
186 ;; (defun linum-after-size (frame)
187 ;; (linum-after-config))
189 (defun linum-schedule ()
190 ;; schedule an update; the delay gives Emacs a chance for display changes
191 (run-with-idle-timer 0 nil #'linum-update-current))
193 ;; (defun linum-after-config ()
194 ;; (walk-windows (lambda (w) (linum-update (window-buffer w))) nil 'visible))
196 (defun linum-unload-function ()
197 "Unload the Linum library."
198 (global-linum-mode -1)
199 ;; continue standard unloading
200 nil)
202 (provide 'linum)
204 ;; arch-tag: dea45631-ed3c-4867-8b49-1c41c80aec6a
205 ;;; linum.el ends here