Skip to content

Commit

Permalink
Fix vim-plug specification to follow stable releases. Moving the same…
Browse files Browse the repository at this point in the history
… tag is an antipattern that doesn't re-resolve with vim-plug, see this discussion for more detail (junegunn/vim-plug#720). Per vim-plug's maintainer's recommendation, use the 'tag' key instead with a shell wildcard. Wildcard should be '*.*.*' as that follows Black's versioning detailed here (https://black.readthedocs.io/en/latest/contributing/release_process.html\#cutting-a-release) and doesn't include current alpha releases.
  • Loading branch information
matthewarmand committed Dec 20, 2022
1 parent bb0f446 commit 1a73b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/integrations/editors.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Configuration:
To install with [vim-plug](https://github.com/junegunn/vim-plug):

```
Plug 'psf/black', { 'branch': 'stable' }
Plug 'psf/black', { 'tag': '*.*.*' }
```
##### Vundle
Expand Down

0 comments on commit 1a73b72

Please sign in to comment.