annotate lisp/hl-line.el @ 52031:5163fa137977

(defface tooltip): Inherit from variable-pitch.
author John Paul Wallington <jpw@pobox.com>
date Wed, 23 Jul 2003 11:37:13 +0000
parents 5edeb93ad9c0
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
1 ;;; hl-line.el --- highlight the current line
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
2
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
3 ;; Copyright (C) 1998, 2000, 2001, 2003 Free Software Foundation, Inc.
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
4
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
5 ;; Author: Dave Love <fx@gnu.org>
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
6 ;; Created: 1998-09-13
29369
48dc52f114f3 Rewritten using define-minor-mode.
Dave Love <fx@gnu.org>
parents: 29087
diff changeset
7 ;; Keywords: faces, frames, emulation
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
8
29087
d6e90113152f Fix boilerplate comments.
Dave Love <fx@gnu.org>
parents: 27228
diff changeset
9 ;; This file is part of GNU Emacs.
d6e90113152f Fix boilerplate comments.
Dave Love <fx@gnu.org>
parents: 27228
diff changeset
10
d6e90113152f Fix boilerplate comments.
Dave Love <fx@gnu.org>
parents: 27228
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
14 ;; any later version.
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
15
29087
d6e90113152f Fix boilerplate comments.
Dave Love <fx@gnu.org>
parents: 27228
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
20
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
25
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
27
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
28 ;; Provides a buffer-local minor mode (toggled by M-x hl-line-mode)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
29 ;; and a global minor mode (toggled by M-x global-hl-line-mode) to
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
30 ;; highlight, on a suitable terminal, the line on which point is. The
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
31 ;; global mode highlights the current line in the selected window only
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
32 ;; (except when the minibuffer window is selected). This was
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
33 ;; implemented to satisfy a request for a feature of Lesser Editors.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
34 ;; The local mode is sticky: it highlights the line about the buffer's
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
35 ;; point even if the buffer's window is not selected. Caveat: the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
36 ;; buffer's point might be different from the point of a non-selected
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
37 ;; window. Set the variable `hl-line-sticky-flag' to nil to make the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
38 ;; local mode behave like the global mode.
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
39
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
40 ;; You probably don't really want to use the global mode; if the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
41 ;; cursor is difficult to spot, try changing its colour, relying on
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
42 ;; `blink-cursor-mode' or both. The hookery used might affect
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
43 ;; response noticeably on a slow machine. The local mode may be
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
44 ;; useful in non-editing buffers such as Gnus or PCL-CVS though.
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
45
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
46 ;; An overlay is used. In the non-sticky cases, this overlay is
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
47 ;; active only on the selected window. A hook is added to
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
48 ;; `post-command-hook' to activate the overlay and move it to the line
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
49 ;; about point. To get the non-sticky behavior, `hl-line-unhighlight'
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
50 ;; is added to `pre-command-hook' as well. This function deactivates
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
51 ;; the overlay unconditionally in case the command changes the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
52 ;; selected window. (It does so rather than keeping track of changes
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
53 ;; in the selected window).
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
54
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
55 ;; You could make variable `global-hl-line-mode' buffer-local and set
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
56 ;; it to nil to avoid highlighting specific buffers, when the global
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
57 ;; mode is used.
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
58
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
59 ;;; Code:
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
60
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
61 (defgroup hl-line nil
35031
c42fc96648de (hl-line): Doc fix.
Dave Love <fx@gnu.org>
parents: 33187
diff changeset
62 "Highlight the current line."
25174
caaa177b2390 (hl-line): Fix :version.
Dave Love <fx@gnu.org>
parents: 25051
diff changeset
63 :version "21.1"
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
64 :group 'editing)
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
65
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
66 (defcustom hl-line-face 'highlight
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
67 "Face with which to highlight the current line."
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
68 :type 'face
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
69 :group 'hl-line)
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
70
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
71 (defcustom hl-line-sticky-flag t
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
72 "*Non-nil means highlight the current line in all windows.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
73 Otherwise Hl-Line mode will highlight only in the selected
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
74 window. Setting this variable takes effect the next time you use
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
75 the command `hl-line-mode' to turn Hl-Line mode on."
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
76 :type 'boolean
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
77 :version "21.4"
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
78 :group 'hl-line)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
79
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
80 (defvar hl-line-overlay nil
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
81 "Overlay used by Hl-Line mode to highlight the current line.")
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
82 (make-variable-buffer-local 'hl-line-overlay)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
83
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
84 (defvar global-hl-line-overlay nil
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
85 "Overlay used by Global-Hl-Line mode to highlight the current line.")
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
86
25051
64e3159f0c7b (hl-line-mode): Add autload cookies.
Dave Love <fx@gnu.org>
parents: 24961
diff changeset
87 ;;;###autoload
29369
48dc52f114f3 Rewritten using define-minor-mode.
Dave Love <fx@gnu.org>
parents: 29087
diff changeset
88 (define-minor-mode hl-line-mode
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
89 "Buffer-local minor mode to highlight the line about point.
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
90 With ARG, turn Hl-Line mode on if ARG is positive, off otherwise.
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
91
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
92 If `hl-line-sticky-flag' is non-nil, Hl-Line mode highlights the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
93 line about the buffer's point in all windows. Caveat: the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
94 buffer's point might be different from the point of a
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
95 non-selected window. Hl-Line mode uses the function
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
96 `hl-line-highlight' on `post-command-hook' in this case.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
97
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
98 When `hl-line-sticky-flag' is nil, Hl-Line mode highlights the
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
99 line about point in the selected window only. In this case, it
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
100 uses the function `hl-line-unhighlight' on `pre-command-hook' in
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
101 addition to `hl-line-highlight' on `post-command-hook'."
38955
9bdcb656d1cf (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
Gerd Moellmann <gerd@gnu.org>
parents: 38937
diff changeset
102 nil nil nil
29369
48dc52f114f3 Rewritten using define-minor-mode.
Dave Love <fx@gnu.org>
parents: 29087
diff changeset
103 (if hl-line-mode
48dc52f114f3 Rewritten using define-minor-mode.
Dave Love <fx@gnu.org>
parents: 29087
diff changeset
104 (progn
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
105 ;; In case `kill-all-local-variables' is called.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
106 (add-hook 'change-major-mode-hook #'hl-line-unhighlight nil t)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
107 (if hl-line-sticky-flag
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
108 (remove-hook 'pre-command-hook #'hl-line-unhighlight t)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
109 (add-hook 'pre-command-hook #'hl-line-unhighlight nil t))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
110 (hl-line-highlight)
50847
47453bc2423e Removed an erroneous comment.
Lute Kamstra <lute@gnu.org>
parents: 44172
diff changeset
111 (add-hook 'post-command-hook #'hl-line-highlight nil t))
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
112 (remove-hook 'post-command-hook #'hl-line-highlight t)
29369
48dc52f114f3 Rewritten using define-minor-mode.
Dave Love <fx@gnu.org>
parents: 29087
diff changeset
113 (hl-line-unhighlight)
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
114 (remove-hook 'change-major-mode-hook #'hl-line-unhighlight t)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
115 (remove-hook 'pre-command-hook #'hl-line-unhighlight t)))
38937
ff93d7955c3d (hl-line-mode): Don't be a global mode.
Gerd Moellmann <gerd@gnu.org>
parents: 35031
diff changeset
116
43031
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
117 (defun hl-line-highlight ()
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
118 "Active the Hl-Line overlay on the current line."
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
119 (if hl-line-mode ; Might be changed outside the mode function.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
120 (progn
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
121 (unless hl-line-overlay
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
122 (setq hl-line-overlay (make-overlay 1 1)) ; to be moved
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
123 (overlay-put hl-line-overlay 'face hl-line-face))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
124 (overlay-put hl-line-overlay
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
125 'window (unless hl-line-sticky-flag (selected-window)))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
126 (move-overlay hl-line-overlay
51018
5edeb93ad9c0 (hl-line-highlight, global-hl-line-highlight): Use
Lute Kamstra <lute@gnu.org>
parents: 51010
diff changeset
127 (line-beginning-position) (line-beginning-position 2)))
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
128 (hl-line-unhighlight)))
43031
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
129
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
130 (defun hl-line-unhighlight ()
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
131 "Deactivate the Hl-Line overlay on the current line."
43031
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
132 (if hl-line-overlay
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
133 (delete-overlay hl-line-overlay)))
46823e7a2cae (hl-line-highlight, hl-line-unhighlight):
Richard M. Stallman <rms@gnu.org>
parents: 42842
diff changeset
134
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
135 ;;;###autoload
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
136 (define-minor-mode global-hl-line-mode
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
137 "Global minor mode to highlight the line about point in the current window.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
138 With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
139
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
140 Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
141 `global-hl-line-highlight' on `pre-command-hook' and `post-command-hook'."
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
142 :global t
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
143 :group 'hl-line
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
144 (if global-hl-line-mode
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
145 (progn
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
146 (add-hook 'pre-command-hook #'global-hl-line-unhighlight)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
147 (add-hook 'post-command-hook #'global-hl-line-highlight))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
148 (global-hl-line-unhighlight)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
149 (remove-hook 'pre-command-hook #'global-hl-line-unhighlight)
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
150 (remove-hook 'post-command-hook #'global-hl-line-highlight)))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
151
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
152 (defun global-hl-line-highlight ()
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
153 "Active the Global-Hl-Line overlay on the current line in the current window."
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
154 (when global-hl-line-mode ; Might be changed outside the mode function.
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
155 (unless (window-minibuffer-p (selected-window))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
156 (unless global-hl-line-overlay
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
157 (setq global-hl-line-overlay (make-overlay 1 1)) ; to be moved
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
158 (overlay-put global-hl-line-overlay 'face hl-line-face))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
159 (overlay-put global-hl-line-overlay 'window (selected-window))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
160 (move-overlay global-hl-line-overlay
51018
5edeb93ad9c0 (hl-line-highlight, global-hl-line-highlight): Use
Lute Kamstra <lute@gnu.org>
parents: 51010
diff changeset
161 (line-beginning-position) (line-beginning-position 2)))))
51010
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
162
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
163 (defun global-hl-line-unhighlight ()
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
164 "Deactivate the Global-Hl-Line overlay on the current line."
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
165 (if global-hl-line-overlay
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
166 (delete-overlay global-hl-line-overlay)))
f79532778159 Rewrote the local minor mode so that it can be
Lute Kamstra <lute@gnu.org>
parents: 50847
diff changeset
167
24961
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
168 (provide 'hl-line)
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
169
4d9ce81656da Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
170 ;;; hl-line.el ends here