k-takata / minpac

A minimal package manager for Vim 8+ (and Neovim)
836 stars 30 forks source link

Use win_gotoid() to go to progress window #119

Closed matveyt closed 4 years ago

matveyt commented 4 years ago

This is a bug fix. Currently wincmd w is used to switch to progress window. This fails if the user has already switched to another tab, resulting in log messages being added to a wrong window. Must use win_gotoid() instead.

k-takata commented 4 years ago

Thank you.