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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
20b1e959
Commit
20b1e959
authored
Nov 21, 2019
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/minibuffer.el (completions-common-part): Make it blue when possible
parent
81ab458a
Pipeline
#4129
failed with stage
in 84 minutes and 54 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
etc/NEWS
etc/NEWS
+2
-0
lisp/minibuffer.el
lisp/minibuffer.el
+3
-1
No files found.
etc/NEWS
View file @
20b1e959
...
...
@@ -409,6 +409,8 @@ matches strings where the pattern appears as a subsequence. Put
simply, makes "foo" complete to both "barfoo" and "frodo". Add 'flex'
to 'completion-styles' or 'completion-category-overrides' to use it.
** The 'completion-common-part' face is now visible by default.
+++
**
New face attribute ':extend' to control face extension at EOL.
The new face attribute ':extend' controls whether to use the face for
...
...
lisp/minibuffer.el
View file @
20b1e959
...
...
@@ -1692,7 +1692,9 @@ See also `display-completion-list'.")
"Face for the first character after point in completions.
See also the face `completions-common-part'."
)
(
defface
completions-common-part
'
((
t
nil
))
(
defface
completions-common-part
'
((((
class
color
)
(
min-colors
16
)
(
background
light
))
:foreground
"blue3"
)
(((
class
color
)
(
min-colors
16
)
(
background
dark
))
:foreground
"lightblue"
))
"Face for the parts of completions which matched the pattern.
See also the face `completions-first-difference'."
)
...
...
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