Skip to content

Commit

Permalink
Fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed May 5, 2024
1 parent c39bf07 commit 0765418
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog].

## Unreleased
### Bugs fixed
* In version 6.3 a bug was introduced that caused
`vertico-directory-enter` to no longer remember candidates. This has
been fixed.

## 6.3 (released 2024-02-25)
### Enhancements
* The completion style now supports lazy highlighting via
Expand Down
2 changes: 1 addition & 1 deletion vertico-prescient.el
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Such commands are listed in `vertico-prescient--insertion-commands'."
;; In Emacs 28+, we would use the new second argument
;; to `minibufferp' check if the buffer is the active
;; minibuffer, but we want to support Emacs 27.
(and (> 0 (minibuffer-depth))
(and (> (minibuffer-depth) 0)
(minibufferp buf)
(eq (active-minibuffer-window)
(get-buffer-window buf)))))
Expand Down

0 comments on commit 0765418

Please sign in to comment.