mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
14 lines
305 B
Bash
14 lines
305 B
Bash
#
|
|
# Autocomplete for cheat.py
|
|
# Copyright (c) 2013, Jean-Philippee "Orax" Roemer
|
|
#
|
|
|
|
function _cheat_autocomplete {
|
|
sheets=$(cheat | tail -n +17 | cut -d' ' -f1)
|
|
COMPREPLY=()
|
|
if [ $COMP_CWORD = 1 ]; then
|
|
COMPREPLY=(`compgen -W "$sheets" -- $2`)
|
|
fi
|
|
}
|
|
|
|
complete -F _cheat_autocomplete cheat
|