We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Say I'm editing below text: ( | indicates cursor position)
|hello world hello world hello world
then search for "hello" by /hello. Then make change to some other text by c i w.
/hello
c i w
hello world othertext world hello world
Then press n for next, should jump to last one, then hit .
n
.
Ideally, last "hello" should be updated to "othertext", but spacemacs executes search next instead.
Is it something we customized in spacemacs? I tested with pure evil, it works as in Vim.
evil
Thanks,
The text was updated successfully, but these errors were encountered:
Yes spacemacs wraps n and N to support anzu. https://github.com/syl20bnr/spacemacs/blob/master/spacemacs/packages.el#L647
N
Not sure why it overrides repeat though. Maybe an advice would work.
Sorry, something went wrong.
Disable anzu in your ~/.spacemacs and see if it works as expected.
anzu
~/.spacemacs
EDIT: mmmhhh disabling anzu may corrupt the mode-line for now, I'll make a fix.
Thank you @danielwuz !
No branches or pull requests
Say I'm editing below text: ( | indicates cursor position)
then search for "hello" by
/hello
. Then make change to some other text byc i w
.Then press
n
for next, should jump to last one, then hit.
Ideally, last "hello" should be updated to "othertext", but spacemacs executes search next instead.
Is it something we customized in spacemacs? I tested with pure
evil
, it works as in Vim.Thanks,
The text was updated successfully, but these errors were encountered: