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
Run NVIM_APPNAME=nvim-repro nvim (i.e. execute nvim with NVIM_APPNAME environment variable set to "nvim-repro").
Wait for all dependencies to install.
Replace this with description of interactive reproduction steps along with the behavior you observe.
Feel free to include images/videos/etc, this helps a lot.
jump_consumes_char.mp4
Text in testfile:
alice bob mark
alice
Place cursor on line 1, first column
Type: dfm
Type: .
Observe that the "a" from "mark" has been consumed
Alternatively:
Place cursor on line 1, on the "a" in "mark"
Type: dfm
Type: .
Observe that the "a" from "mark" has been consumed
What to do after reporting an issue
After reporting the issue, it is safe (and even recommended for cleaner possible future bug reports) to remove 'nvim-repro' config from the system:
Delete config directory ('~/.config/nvim-repro' on Unix).
Delete data directory ('~/.local/share/nvim-repro' on Unix).
Delete state directory ('~/.local/state/nvim-repro' on Unix).
Contributing guidelines
mainbranchModule(s)
mini.jump
Neovim version
0.12 (!at least latest Nightly build!)
Description
Related: Jump consumes characters when it cannot find the target #688
Issue #688 was fixed in commit 4f69339
Although the fix was applied with dot-repeat in mind, the test scenario from OP still fails for dot-repeat, also on Neovim v0.9.5
The applied solution does not target dot-repeat, as only the initial jump enters
vim.scheduleinmake_exprReproduction
Create separate 'nvim-repro' config directory:
Inside 'nvim-repro' directory create a file named 'init.lua'.
Populate it with the following content:
Run
NVIM_APPNAME=nvim-repro nvim(i.e. executenvimwithNVIM_APPNAMEenvironment variable set to "nvim-repro").Wait for all dependencies to install.
Replace this with description of interactive reproduction steps along with the behavior you observe.
Feel free to include images/videos/etc, this helps a lot.
jump_consumes_char.mp4
Text in testfile:
dfm.Alternatively:
dfm.What to do after reporting an issue
After reporting the issue, it is safe (and even recommended for cleaner possible future bug reports) to remove 'nvim-repro' config from the system: