Skip to content
New issue

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

Improve typeahead search logic #1051

Merged
merged 2 commits into from
Jan 19, 2022
Merged

Improve typeahead search logic #1051

merged 2 commits into from
Jan 19, 2022

Commits on Jan 19, 2022

  1. improve typeahead search logic

    This ensures that if you have 4 items:
    - Alice
    - Bob
    - Charlie
    - Bob
    
    And you search for `b`, then you jump to the first `Bob`, but if yuo
    search again for `b` then we used to go to the very first `Bob` because
    we always searched from the top. Now we will search from the active item
    and onwards. Which means that we will now jump to the second `Bob`.
    RobinMalfait committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    72d77f2 View commit details
    Browse the repository at this point in the history
  2. update changelog

    RobinMalfait committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    38f6fd0 View commit details
    Browse the repository at this point in the history