Add completions for black (#8123)

This commit is contained in:
radiantly 2021-07-07 14:18:54 +05:30 committed by Johannes Altmanninger
parent 4ec06f025c
commit 55e60eeae2
2 changed files with 26 additions and 0 deletions

View File

@ -22,6 +22,9 @@ Improved prompts
Completions
^^^^^^^^^^^
- Added completions for:
- ``black`` (:issue:`8123`)
- Improvements to many completions.
Improved terminal support

View File

@ -0,0 +1,23 @@
complete -c black -x -s c -l code -d 'Format code passed in as a string'
complete -c black -x -s l -l line-length -d 'Characters per line'
complete -c black -x -s t -l target-version -d 'Python versions supported by output'
complete -c black -l pyi -d 'Format all input files like typing stubs regardless of file extension'
complete -c black -s S -l skip-string-normalization -d "Don't normalize string quotes or prefixes"
complete -c black -s C -l skip-magic-trailing-comma -d "Don't use trailing commas as a reason to split lines"
complete -c black -l check -d "Don't write the files back, just return the status"
complete -c black -l diff -d "Don't write the files back, just output a diff for each file"
complete -c black -l color -d 'Show colored diff'
complete -c black -l no-color -d 'Do not color diff output'
complete -c black -l fast -d 'Skip temporary sanity checks'
complete -c black -l safe -d 'Do not skip temporary sanity checks'
complete -c black -x -l required-version -d 'Require a specific version of Black to be running'
complete -c black -r -l include -d 'Regular expression of items to include'
complete -c black -r -l exclude -d 'Regular expression of items to exclude'
complete -c black -r -l extend-exclude -d 'Regular expression of additional items to exclude'
complete -c black -r -l force-exclude -d 'Regular expression of Items to always exclude'
complete -c black -r -l stdin-filename -d 'The name of the file when passing through stdin'
complete -c black -s q -l quiet -d 'Only print error messages to stderr'
complete -c black -s v -l verbose -d 'Report files that were unchanged or ignored'
complete -c black -l version -d 'Show version'
complete -c black -r -l config -d 'Configuration file'
complete -c black -s h -l help -d 'Show help'