Append extra space after command in bash_completion

Unlike NovaClient or other Clients in OpenStack, 
there is no space append after command in Heat Client.
That means if I try to run 'heat stack-delete', I have 
to manually append the space and then append the thing 
I want to delete.
This correction will help Heat Client to be more 
convenient for operators.

Change-Id: I229653f0a1ecc2794cdb8006c22a70882084d7e1
This commit is contained in:
tanlin 2014-06-11 17:36:37 +08:00 committed by Lin Tan
parent 5a78fdf4ec
commit ce212218cf
1 changed files with 1 additions and 1 deletions

View File

@ -24,4 +24,4 @@ _heat()
fi
return 0
}
complete -o default -o nospace -F _heat heat
complete -o default -F _heat heat