From ce212218cf66afc9e1938628274a5b0cf0fb009a Mon Sep 17 00:00:00 2001 From: tanlin Date: Wed, 11 Jun 2014 17:36:37 +0800 Subject: 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 --- tools/heat.bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/heat.bash_completion b/tools/heat.bash_completion index 457c305..a04de1a 100644 --- a/tools/heat.bash_completion +++ b/tools/heat.bash_completion @@ -24,4 +24,4 @@ _heat() fi return 0 } -complete -o default -o nospace -F _heat heat +complete -o default -F _heat heat -- cgit v1.2.1