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

Word look-up via REGEX bottom corner #59

Open
bengodden opened this issue Nov 22, 2019 · 2 comments
Open

Word look-up via REGEX bottom corner #59

bengodden opened this issue Nov 22, 2019 · 2 comments
Labels
enhancement New feature or request transcibe-editor Related to the transcription app.

Comments

@bengodden
Copy link
Collaborator

bengodden commented Nov 22, 2019

Create a tool that looks up words in the index by searching a given string - like grep.
Three boxes laid out like this:

Initial Medial Final
(^string) (box two) (box three$)

Input boxes are blank but any typing automatically drops down list of possibilities (similar to creedictionary.com)

Use Rules: Try ē = ê = e, ō = ô = o, etc

"Enter" locks the visible list for scrolling
Include minimize arrow on

@bengodden bengodden added the enhancement New feature or request label Nov 22, 2019
@bengodden
Copy link
Collaborator Author

Would be neat to also plumb in the morpheme editor capabilities once we get that underway

@aaronfay
Copy link
Collaborator

The easiest implementation (that should accommodate your 3 cases) would be to use the wildcard search in ES:

Initial Medial Final
(^string) (box two) (box three$)

Something like:

string* (initial search)
*string* (medial search)
*string (final search)

It could also handle cases where you weren't sure of the middle of a word (or a vowel length):

// eg searching for wihtamawêw
w*tamawêw

This should be pretty easy to implement, thanks for the feedback 🙏

@aaronfay aaronfay added the transcibe-editor Related to the transcription app. label Jan 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request transcibe-editor Related to the transcription app.
Projects
None yet
Development

No branches or pull requests

2 participants