diff options
Diffstat (limited to 'commands/compose/header.go')
-rw-r--r-- | commands/compose/header.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/compose/header.go b/commands/compose/header.go index afc27e92..3283d4e3 100644 --- a/commands/compose/header.go +++ b/commands/compose/header.go @@ -38,7 +38,7 @@ func (Header) Options() string { } func (*Header) CompleteHeaders(arg string) []string { - return commands.CompletionFromList(headers, arg) + return commands.FilterList(headers, arg, commands.QuoteSpace) } func (h Header) Execute(args []string) error { |