-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add search bar + receipt notifications #114
Conversation
Currently using a horrible `static mut` for prototyping purposes, this should go away later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is huge! Thanks.
Thank you for the feature, but is there a way to configure the key-binding for this (without modifying source code + recompiling)? I'm in the unfortunate situation of needing to use windows for work, which conflicts with the Alt+Tab window switching key-binding, making this feature essentially in-accessible. |
How about Ctrl+P? |
Implements a new text input box. One can switch between this box and the chat box using a shortcut (
ALT+Tab
for now). When this box is non-empty, the text is used to search through all channels.It is possible to either type in directly a name that then gets matched against the name of every channel or precede it by
@
and have it instead matched against the members names.I also incorporated the receipt features into this PR as it is becoming kind of a merge mess between these branches.