We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
completing-read-multiple
C-j
,
Encounter this bug when testing out selectrum
selectrum
If I have (selectrum-mode -1) (i.e. run emacs' implementation of completing-read-multiple), then run this code
(selectrum-mode -1)
(completing-read-multiple "Test: " '("foo" "bar" "baz"))
Type in baz, (note the trailing ,) hit C-j I get
baz,
("baz")
But when I enable selectrum (selectrum-mode +1), run the same code, with the same input and hit C-j I get
(selectrum-mode +1)
("baz" "baz")
I.e run the code, hit TAB and then C-j.
TAB
I get the expected behavior if I hit enter or remove the trailing , and hit C-j.
I tested this with version 3.0 (from guix), 20201216.1841 (from melpa) and f5f2329 (from master).
The text was updated successfully, but these errors were encountered:
Thanks, should be fixed by #296?
Sorry, something went wrong.
That fixed it for me thanks! Closing this issue.
No branches or pull requests
Encounter this bug when testing out
selectrum
If I have
(selectrum-mode -1)
(i.e. run emacs' implementation ofcompleting-read-multiple
), then run this codeType in
baz,
(note the trailing,
) hitC-j
I getBut when I enable selectrum
(selectrum-mode +1)
, run the same code, with the same input and hitC-j
I getI.e run the code, hit
TAB
and thenC-j
.I get the expected behavior if I hit enter or remove the trailing
,
and hitC-j
.I tested this with version 3.0 (from guix), 20201216.1841 (from melpa) and f5f2329 (from master).
The text was updated successfully, but these errors were encountered: