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

fix(state): improve detection of mode changing #789

Closed
wants to merge 1 commit into from

Conversation

mehalter
Copy link
Contributor

Description

This helps improve the detection of mode changes in Neovim. It makes 2 small changes.

  • It seems like without scheduling the event callbacks for ModeChanged events, things can start executing out of order a bit
  • It also seems like sometimes the api call for getting the mode of a current buffer lags behind what the actual mode is especially during the ModeChanged event until the event is over in some cases. This really seems like some sort of Neovim bug potentially but it is beyond me to really figure out how to debug it to formulate a real core neovim issue. To circumvent this, this takes the ModeChange event data which specifies the old mode and new mode as a source of truth and passes that to the rest of the functions

Related Issue(s)

@folke
Copy link
Owner

folke commented Jul 23, 2024

This will unfortunately break plugins that rely on canceling the existing operator (like flash and others).
I've been looking into it myself as well and what I see is that after the mode change "t:n", the mode is n for a couple of ms, and then changes for about 50ms to t again after which it again becomes n.

I think this is probably due to some external process that gets started with something like <cmd> which wouldn't trigger ModeChange events, but which would still change the actual mode.

Need to look into a proper way of dealing with this.

@folke folke closed this in c1b062a Jul 23, 2024
folke pushed a commit that referenced this pull request Jul 24, 2024
🤖 I have created a release *beep* *boop*
---


##
[3.12.1](v3.12.0...v3.12.1)
(2024-07-24)


### Bug Fixes

* **node:** dynamic mappings only support functions as rhs. Fixes
[#790](#790)
([ba91db7](ba91db7))
* **state:** use cached mode. Fixes
[#787](#787). Closes
[#789](#789)
([c1b062a](c1b062a))
* **triggers:** check for existing keymaps in the correct buffer. Fixes
[#783](#783)
([977fa23](977fa23))
* **triggers:** nil error
([dae3bd2](dae3bd2))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bug: which-key getting into a deadlock state and not setting up trigger
2 participants