k-takata / minpac

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

[Question] using `confirm()` instead of `input()` in `minpac#clean()` #141

Closed bruhtus closed 2 years ago

bruhtus commented 3 years ago

First of all, thank you for making this minimal plugin manager! It works great, especially the functionallity to move the plugin directory if type option get changed rather than re-cloning the plugin again.

It's not a problem with the minpac itself, it's just my curiosity. Is there a reason not using confirm() and using input() in minpac#impl#clean()? I mean it is much faster to only press y rather than pressing y and enter. Thank you.