-
Notifications
You must be signed in to change notification settings - Fork 382
Fix more bad interactions with evil visual #1235
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
Open
real-or-random
wants to merge
3
commits into
karthink:master
Choose a base branch
from
real-or-random:202602-timer-buffer
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back 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 forces rebuilding the entire transient after every key press.
If you don't like the overhead introduced by this, then an alternative is to call
(transient--stack-pop) (transient--env-apply #'transient--refresh-transient))(still, instead of the(run-at-time ...). This will also refresh the main transient prefix. But it relies on transient internals. Please let me know if you prefer this solution.Uh oh!
There was an error while loading. Please reload this page.
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.
I'm aware of
:refresh-suffixesand chose to avoid it ingptel-menubecause of performance issues. I use it in some other transient menus, likegptel-tools, that have to be fully dynamic to function.Why do you need to enforce a menu-wide change here?
There are actually many calls to
transient-setupor equivalent in specific infixes ofgptel-menu, not just the ones on line 548 and 1053 you've removed.Uh oh!
There was an error while loading. Please reload this page.
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.
Indeed. It took me a while to figure out what is special about the calls on lines 548 and 1053 (and why they need a timer): on these lines, the active transient is not
gptel-menubutgptel--preset. So when you calltransient-setupthere without a timer, you refreshgptel--presetbut not the parentgptel-menu.I don't think transient offers an official way to refresh the parent. I tried calling
(transient-setup 'gptel-menu)but that didn't work.If you're concerned about performance, then there are two options:
(transient--stack-pop) (transient--env-apply #'transient--refresh-transient)does the job at the cost of relying on a transient internal.and keep the timers here. As I wrote below, removing these is not essential.