[X] I have updated the plugin to the latest version before submitting this issue
[X] I have searched the existing issues of flash.nvim
[X] I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
v0.11.0-nightly+4e8efe0
Operating system/version
Linux Nixos 24.05
Describe the bug
I am getting weird behaviour while trying to record a simple macro, similar to https://github.com/folke/flash.nvim/issues/143, but not quite the same because I don't use dot repeats here.
Steps To Reproduce
nvim -u repro.lua
Paste the input text which we can operate on:
Macro that doesn't work:
In vanilla neovim, running the same macro produces correct line:
email_smtp: 'smtp1.example.com'
Interestingly, if you record another macro using Ctrl+C to exit insert mode instead of Escape, the macro works.
It seems to populate the macro register with some odd characters though:
㵦ﶀ栵晤耬㗽㩩̃⥦ﶀ砵 github interprets those as some Chinese unicode, but this is how they look in vim:
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.11.0-nightly+4e8efe0
Operating system/version
Linux Nixos 24.05
Describe the bug
I am getting weird behaviour while trying to record a simple macro, similar to https://github.com/folke/flash.nvim/issues/143, but not quite the same because I don't use dot repeats here.
Steps To Reproduce
nvim -u repro.lua
"qy$
@q
on any of the linesExpected Behavior
Executing the macro with
flash.nvim
on aemail_smtp
line results in following output:In vanilla neovim, running the same macro produces correct line:
Interestingly, if you record another macro using Ctrl+C to exit insert mode instead of Escape, the macro works. It seems to populate the macro register with some odd characters though:
㵦ﶀ栵晤耬㗽㩩̃⥦ﶀ砵
github interprets those as some Chinese unicode, but this is how they look in vim:Repro