You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by DeepReef11 October 4, 2024
I think the help panel would be much more useful if it had at least a search function and even better if it could be a fuzzy finder.
The text was updated successfully, but these errors were encountered:
actionless
changed the title
show help with search or fuzzy finder (like telescope in nvim)
show Hotkeys-Help with search or fuzzy finder (like telescope in nvim)
Oct 5, 2024
Maybe I could do that, or at least some very basic searching.
In my config, I completely rewrote the default awful.hotkeys_popup. It doesn't perform fuzzy searching, but a simple search is good enough for me.
It takes a query string, splits it by whitespace, and then tries to match every word in the descriptions and keys.
Matching keys is a bit tricky. The whole word must match exactly. For example, if the query is "sup", it wouldn't make sense to highlight every keybinding containing the "super" key. Another example is if there is a keybinding super + ⬅️, the user can find it by typing "super left".
So, when the awful.hotkeys_popup is shown, it could automatically call awful.prompt.run and highlight the keybinding descriptions as the user types. But I'm uncertain whether this aligns with awesomewm philosophy.
Discussed in #3962
Originally posted by DeepReef11 October 4, 2024
I think the help panel would be much more useful if it had at least a search function and even better if it could be a fuzzy finder.
The text was updated successfully, but these errors were encountered: