Added autocomplete for bash

This commit is contained in:
roemer_j 2013-09-12 03:25:10 +02:00
parent 64cba079f9
commit 8b8d06f0e1
2 changed files with 16 additions and 1 deletions

14
cheat-completion.bash Normal file
View File

@ -0,0 +1,14 @@
#
# 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

View File

@ -17,5 +17,6 @@ setup(name='cheat',
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
if '.' not in f]},
scripts=['cheat'],
data_files=[('/usr/share/zsh/site-functions', ['_cheat'])]
data_files=[('/usr/share/zsh/site-functions', ['_cheat']),
('/etc/bash_completion.d', ['cheat-completion.bash'])]
)