rcarriga / vim-ultest

The ultimate testing plugin for (Neo)Vim
MIT License
385 stars 15 forks source link

Jank caused due to result in floating window #65

Closed Chaitanyabsprip closed 3 years ago

Chaitanyabsprip commented 3 years ago

Language: Dart/Flutter

I would prefer to have a way to increase the hold time before the plugin pops up the floating window with the test result. It causes jank when trying to move through the buffer. A "hoverDelay".

image
rcarriga commented 3 years ago

The popup time is based on your updatetime setting. I'm guessing you have it set very low, which has a number of issues separate to vim-ultest.

If you don't want to change updatetime time you can do let g:ultest_output_on_run = v:false to disable the popup automatically showing, instead using :UltestOutput to show when you want to

Chaitanyabsprip commented 3 years ago

I appreciate your timely response, I will try out your suggestion and update this issue respectively. Thank you.

Chaitanyabsprip commented 3 years ago

I disabled output on run and now everything runs smoothly.