Skip to content

Commit 1a73b72

Browse files
committed
Fix vim-plug specification to follow stable releases. Moving the same tag is an antipattern that doesn't re-resolve with vim-plug, see this discussion for more detail (https://github.com/junegunn/vim-plug/pull/720\#issuecomment-1105829356). 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.
1 parent bb0f446 commit 1a73b72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/integrations/editors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Configuration:
125125
To install with [vim-plug](https://github.com/junegunn/vim-plug):
126126

127127
```
128-
Plug 'psf/black', { 'branch': 'stable' }
128+
Plug 'psf/black', { 'tag': '*.*.*' }
129129
```
130130

131131
##### Vundle

0 commit comments

Comments
 (0)