tmux-plugins / tpm

Tmux Plugin Manager
MIT License
11.95k stars 420 forks source link

Non-Github Plugin Install Fails due to Syntax Error in README.md #172

Closed Swivelgames closed 4 years ago

Swivelgames commented 4 years ago

I thought it was a bit peculiar that the README.md suggested using git@bitbucket.com/user/plugin, but went ahead with that syntax. After seemingly endlessly scratching my head, while trying to figure out what the issue, I reverted to the traditional git URL syntax (SSH syntax) and it worked.

Incorrect:

set -g @plugin 'git@bitbucket.com/user/plugin_name`

Correct:

set -g @plugin 'git@bitbucket.com:user/plugin_name`

Verified by running ./.tmux/plugins/tpm/bin/install_plugins manually with a fresh version of TMUX + TPM with both styles.

image

bruno- commented 4 years ago

Thank you.