remove the title as cheat -l lists the title as well.

This commit is contained in:
James Zhu 2019-10-22 11:58:51 +08:00
parent 33e33dc7b7
commit 749173f1f6
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
function _cheat_autocomplete {
sheets=$(cheat -l | cut -d' ' -f1)
sheets=$(cheat -l | sed -n '2,$p'|cut -d' ' -f1)
COMPREPLY=()
if [ $COMP_CWORD = 1 ]; then
COMPREPLY=(`compgen -W "$sheets" -- $2`)