forked from sharkdp/bat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes sharkdp#1010
- Loading branch information
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# shellcheck disable=SC2207 | ||
|
||
_bat() { | ||
if [[ ${COMP_WORDS[1]-} == cache ]]; then | ||
case $3 in | ||
--source | --target) | ||
local IFS=$'\n' | ||
COMPREPLY=($(compgen -d -- "$2")) | ||
compopt -o filenames | ||
return 0 | ||
;; | ||
esac | ||
COMPREPLY=($(compgen -W " | ||
--build --clear --source --target --blank --help | ||
" -- "$2")) | ||
return 0 | ||
fi | ||
|
||
case $3 in | ||
-l | --language) | ||
local IFS=$'\n' | ||
COMPREPLY=($(compgen -W "$( | ||
"$1" --list-languages | while IFS=: read -r lang _; do | ||
printf "%s\n" "$lang" | ||
done | ||
)" -- "$2")) | ||
compopt -o filenames # for escaping | ||
return 0 | ||
;; | ||
-H | --highlight-line | --diff-context | --tabs | --terminal-width | \ | ||
-m | --map-syntax | --style | --line-range | -h | --help | -V | \ | ||
--version) | ||
# argument required but no completion available, or argument | ||
# causes an exit | ||
return 0 | ||
;; | ||
--file-name) | ||
local IFS=$'\n' | ||
COMPREPLY=($(compgen -f -- "$2")) | ||
compopt -o filenames | ||
return 0 | ||
;; | ||
--wrap) | ||
COMPREPLY=($(compgen -W "auto never character" -- "$2")) | ||
return 0 | ||
;; | ||
--color | --decorations | --paging) | ||
COMPREPLY=($(compgen -W "auto never always" -- "$2")) | ||
return 0 | ||
;; | ||
--italic-text) | ||
COMPREPLY=($(compgen -W "always never" -- "$2")) | ||
return 0 | ||
;; | ||
--pager) | ||
COMPREPLY=($(compgen -c -- "$2")) | ||
return 0 | ||
;; | ||
--theme) | ||
local IFS=$'\n' | ||
COMPREPLY=($(compgen -W "$("$1" --list-themes)" -- "$2")) | ||
compopt -o filenames | ||
return 0 | ||
;; | ||
esac | ||
|
||
if [[ $2 == -* ]]; then | ||
COMPREPLY=($(compgen -W " | ||
--show-all --plain --language --highlight-line | ||
--file-name --diff --diff-context --tabs --wrap | ||
--terminal-width --number --color --italic-text | ||
--decorations --paging --pager --map-syntax --theme | ||
--list-themes --style --line-range --list-languages | ||
--help --version | ||
" -- "$2")) | ||
return 0 | ||
fi | ||
|
||
local IFS=$'\n' | ||
COMPREPLY=($(compgen -f -- "$2")) | ||
compopt -o filenames | ||
((COMP_CWORD == 1)) && COMPREPLY+=($(compgen -W cache -- "$2")) | ||
|
||
} && complete -F _bat {{PROJECT_EXECUTABLE}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters