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

feat: add acronym matching for directories (#1002) #1004

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

Erio-Harrison
Copy link

Description

This PR implements acronym matching for directory names as requested in #1002.
Users can now query directories like /home/user/hooli-interactive-computer-keyboard
using their acronym hick. The filter_by_keywords method first attempts regular
substring matching, falling back to match_acronym if needed.

Changes

  • Modified filter_by_keywords in src/db/stream.rs to integrate acronym matching.
  • Added match_acronym to generate acronyms from directory basenames.
  • Supports separators: -, _, , ..
  • Case-insensitive matching via to_lowercase.

Testing

  • Verified with test cases:
    • ["hick"] matches /home/bachman/Documents/hooli-interactive-computer-keyboard.
    • ["HICK"] matches (case-insensitive).
    • ["hick"] fails for /home/bachman/Documents/hooli-interactive-keyboard (incomplete acronym).
    • ["abc"] matches /home/bachman/Documents/a-b-c.

Closes #1002

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feature: acronyms
1 participant