Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag specification of plugins #4

Closed
junegunn opened this issue Feb 21, 2015 · 0 comments
Closed

Tag specification of plugins #4

junegunn opened this issue Feb 21, 2015 · 0 comments

Comments

@junegunn
Copy link

I happened to look at your vimrc, and realized that you're extensively using tags and branches with vim-plug.

Plug 'dkprice/vim-easygrep', 'unstable'
Plug 'Raimondi/delimitMate', '2.7'

The older documentation of vim-plug suggested that the above syntax is both for tags and branches. However, we recently realized that for some of the commands that the current version of vim-plug use, branches and tags are not interchangeable. (See junegunn/vim-plug#174 for more info) And the syntax is now for tags only, and it is recommended that you explicitly specify whether if it's a tag or a branch instead of using the above syntax.

Plug 'Raimondi/delimitMate', '2.7'
Plug 'Raimondi/delimitMate', { 'tag': '2.7' }
Plug 'dkprice/vim-easygrep', { 'branch': 'unstable' }

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant