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
1
Issues
1
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
dd3038f6
Commit
dd3038f6
authored
Jun 10, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(comint-dynamic-list-completions): No space in *Completions*.
parent
1af808dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/comint.el
lisp/comint.el
+3
-3
No files found.
lisp/comint.el
View file @
dd3038f6
...
...
@@ -1965,17 +1965,17 @@ See also `comint-dynamic-complete-filename'."
"List in help buffer sorted COMPLETIONS.
Typing SPC flushes the help buffer."
(
let
((
conf
(
current-window-configuration
)))
(
with-output-to-temp-buffer
"
*Completions*"
(
with-output-to-temp-buffer
"*Completions*"
(
display-completion-list
(
sort
completions
'string-lessp
)))
(
message
"Hit space to flush"
)
(
let
(
key
first
)
(
if
(
save-excursion
(
set-buffer
(
get-buffer
"
*Completions*"
))
(
set-buffer
(
get-buffer
"*Completions*"
))
(
setq
key
(
read-key-sequence
nil
)
first
(
aref
key
0
))
(
and
(
consp
first
)
(
eq
(
window-buffer
(
posn-window
(
event-start
first
)))
(
get-buffer
"
*Completions*"
))
(
get-buffer
"*Completions*"
))
(
eq
(
key-binding
key
)
'mouse-choose-completion
)))
;; If the user does mouse-choose-completion with the mouse,
;; execute the command, then delete the completion window.
...
...
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