Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
29910493
Commit
29910493
authored
Jan 09, 2001
by
Eli Zaretskii
Browse files
(isearch, isearch-lazy-highlight-face): New
definitions for face colors and attributes.
parent
00a18b59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/isearch.el
lisp/isearch.el
+16
-4
No files found.
lisp/ChangeLog
View file @
29910493
2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
* isearch.el (isearch, isearch-lazy-highlight-face): New
definitions for face colors and attributes.
* wid-edit.el (widget-choose): Call display-popup-menus-p instead
of display-mouse-p.
...
...
lisp/isearch.el
View file @
29910493
...
...
@@ -1886,14 +1886,26 @@ If this is nil, extra highlighting can be \"manually\" removed with
:group 'isearch)
(defface isearch
'((t (:inherit region)))
"
Face
for
highlighting
matches.
"
'((((type tty pc) (class color))
(:background "
magenta4
" :foreground "
cyan1
"))
(((class color) (background light))
(:background "
magenta4
" :foreground "
lightskyblue1
"))
(((class color) (background dark))
(:background "
palevioletred2
" :foreground "
brown4
"))
(t (:inverse-video t)))
"
Face
for
highlighting
Isearch
matches.
"
:group 'isearch-faces)
(defvar isearch 'isearch)
(defface isearch-lazy-highlight-face
'((t (:inherit secondary-selection)))
"
Face
for
lazy
highlighting
of
matches.
"
'((((type tty pc) (class color))
(:background "
turquoise3
"))
(((class color) (background light))
(:background "
paleturquoise
"))
(((class color) (background dark))
(:background "
paleturquoise4
"))
(t (:underline t)))
"
Face
for
lazy
highlighting
of
Isearch
matches
other
than
the
current
one.
"
:group 'isearch-faces)
(defvar isearch-lazy-highlight-face 'isearch-lazy-highlight-face)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment