mirror of https://github.com/cheat/cheat.git
Added autocomplete for bash
This commit is contained in:
parent
64cba079f9
commit
8b8d06f0e1
|
@ -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
|
3
setup.py
3
setup.py
|
@ -17,5 +17,6 @@ setup(name='cheat',
|
||||||
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
||||||
if '.' not in f]},
|
if '.' not in f]},
|
||||||
scripts=['cheat'],
|
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'])]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue