tani / vim-jetpack

The lightning-fast plugin manager, alternative to vim-plug
https://gist.asciidoctor.org/?github-tani/vim-jetpack/main//README.adoc&source-highlighter=highlightjs
MIT License
323 stars 32 forks source link

Use jetpack#tap instead of g:jetpack_skip_config #92

Closed tani closed 1 year ago

tani commented 1 year ago

At #88, @uga-rosa proposed to me a new variable, g:jetpack_skip_config, to skip executing the config setting because the config containing require(...) usually fails in the test on CI. This reason is the same as #91. At #88, @uga-rosa says that the variable is only for developers and not for users. However, according to #91, we need to employ this approach even for users. The variable approach is not good for preventing the execution of config at the initial (setup) phase because we need to manually update the variable from 0 to 1 after installing all plugins. Here, we propose the following changes. Would you mind reviewing this change, @uga-rosa and @gw31415?

tani commented 1 year ago

Thanks for checking, @uga-rosa !