repl: make autocomplete case-insensitive#41632
Merged
nodejs-github-bot merged 1 commit intonodejs:masterfrom Jun 12, 2022
Merged
repl: make autocomplete case-insensitive#41632nodejs-github-bot merged 1 commit intonodejs:masterfrom
nodejs-github-bot merged 1 commit intonodejs:masterfrom
Conversation
7ad59a7 to
205e938
Compare
Member
|
@nodejs/repl @BridgeAR |
Member
|
Welcome, @gribnoysup, and thank you for the pull request! Can you please update the subsystem in the commit message to be |
Collaborator
Collaborator
205e938 to
5c98227
Compare
Contributor
Author
|
Hi @Trott 👋 Sure thing, updated |
Collaborator
Collaborator
Collaborator
22 tasks
addaleax
approved these changes
Jan 24, 2022
Trott
approved these changes
Jan 24, 2022
28 tasks
targos
reviewed
Jan 25, 2022
This was referenced Jan 26, 2022
jasnell
approved these changes
Jan 28, 2022
22 tasks
Member
|
Hey it looks like this has some conflicts, would you mind rebasing on top of master? |
bb6f57b to
3e7e3df
Compare
aduh95
approved these changes
Jun 5, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: nodejs#41631
3e7e3df to
fea6adf
Compare
Contributor
Author
|
@benjamingr #41632 (comment) is resolved now if you want to take another look and proceed with this one. I'm not sure I understand the process exactly, but I'm guessing this needs |
Collaborator
Collaborator
Collaborator
Collaborator
Collaborator
Collaborator
Collaborator
|
Landed in 156365e |
italojs
pushed a commit
to italojs/node
that referenced
this pull request
Jun 12, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: nodejs#41631 PR-URL: nodejs#41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
danielleadams
pushed a commit
that referenced
this pull request
Jun 13, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: #41631 PR-URL: #41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Merged
15 tasks
danielleadams
pushed a commit
that referenced
this pull request
Jun 13, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: #41631 PR-URL: #41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
targos
pushed a commit
that referenced
this pull request
Jul 12, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: #41631 PR-URL: #41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
targos
pushed a commit
that referenced
this pull request
Jul 31, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: #41631 PR-URL: #41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
guangwong
pushed a commit
to noslate-project/node
that referenced
this pull request
Oct 10, 2022
This changes autocomplete suggestion filter to ignore input case allowing for more autosuggest results shown on the screen Fixes: nodejs/node#41631 PR-URL: nodejs/node#41632 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This changes autocomplete suggestion filter to ignore input case
when first character of the last member of the user input is lower-case
allowing for more autosuggest results shown on the screen
Fixes: #41631