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
Neovim continues to show "Searching ..." even after search completes giving an impression that the search is still ongoing or frozen/hang.
The issue behind this is the redraw! in ack#ShowResults() Do not use redraw! in ack.vim as it doesn't clear the command line on neovim
redraw!
ack#ShowResults()
Refer neovim/neovim#9524 which recommends not to use :redraw! to clear the command line. Instead use :echo without argument.
:redraw!
:echo
The text was updated successfully, but these errors were encountered:
@tariqnoman same here....
Sorry, something went wrong.
Has anyone created a PR to fix this already? 🤔
Successfully merging a pull request may close this issue.
Neovim continues to show "Searching ..." even after search completes giving an impression that the search is still ongoing or frozen/hang.
The issue behind this is the
redraw!
inack#ShowResults()
Do not use
redraw!
in ack.vim as it doesn't clear the command line on neovimRefer neovim/neovim#9524 which recommends not to use
:redraw!
to clear the command line. Instead use:echo
without argument.The text was updated successfully, but these errors were encountered: