-
Notifications
You must be signed in to change notification settings - Fork 155
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 inapplicable condition on menu activation and navigation #608
base: main
Are you sure you want to change the base?
Conversation
8d93cc5
to
ee907e7
Compare
Thanks for trying to address this! EDIT: The CI failure seems to come from |
Sure, I have this branch set on my daily driver, just let me know if something need to be tested. It seems help menu indeed not called, I will investigate this case. |
I can confirm that help menu is empty on the conditional I added. This is because on The subsequent updates of the menu happened after repaint -> I think, I will make the auto-close only works on quick menu only since it includes auto-completion menu (which is Tab key main target). Moreover, the |
So far, everything works smoothly in my config: help menu, completion, completion hint. I think this branch is ready for review. |
e372084
to
0c27b0a
Compare
Codecov Report
@@ Coverage Diff @@
## main #608 +/- ##
==========================================
- Coverage 49.76% 49.01% -0.75%
==========================================
Files 41 42 +1
Lines 7827 7946 +119
==========================================
Hits 3895 3895
- Misses 3932 4051 +119
|
Do I need to do something on the @codecov, @sholderbach? I don't see any test in engine.rs file. Also, if there is something I can verify or do regarding the merge of this PR, I would gladly do that. |
Allow
until
keybinding withsend: menu*
(activation and navigation) stacked with other action by defining someInapplicable
conditions.Fixes #603.
Fixes #604.