mileszs / ack.vim

Vim plugin for the Perl module / CLI script 'ack'
Other
3.08k stars 396 forks source link

Neovim continues to show "Searching ..." in the command line even after search completes #267

Open tariqnoman opened 4 years ago

tariqnoman commented 4 years ago

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

Refer https://github.com/neovim/neovim/issues/9524 which recommends not to use :redraw! to clear the command line. Instead use :echo without argument.

diegosomar commented 4 years ago

@tariqnoman same here....

balazser commented 2 years ago

Has anyone created a PR to fix this already? :thinking: