diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2021-01-16 18:54:59 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2021-01-16 18:54:59 +0100 |
commit | 47eeb02c7a778890d102b89f9a352c664df1dda1 (patch) | |
tree | bbb20f048a1076c6eebd78398dcb2dc94e0b1d79 /cmd/podman/common | |
parent | 83ed464d29c118b67e70fdf7c8baa57c5f8298e5 (diff) | |
download | podman-47eeb02c7a778890d102b89f9a352c664df1dda1.tar.gz podman-47eeb02c7a778890d102b89f9a352c664df1dda1.tar.bz2 podman-47eeb02c7a778890d102b89f9a352c664df1dda1.zip |
Rename AutocompletePortCommand func
This function is now used for the port and rename command.
Rename it to AutocompleteContainerOneArg.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'cmd/podman/common')
-rw-r--r-- | cmd/podman/common/completion.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/common/completion.go b/cmd/podman/common/completion.go index d01842998..c9a3c5e94 100644 --- a/cmd/podman/common/completion.go +++ b/cmd/podman/common/completion.go @@ -517,8 +517,8 @@ func AutocompleteRunlabelCommand(cmd *cobra.Command, args []string, toComplete s return nil, cobra.ShellCompDirectiveDefault } -// AutocompletePortCommand - Autocomplete podman port command args. -func AutocompletePortCommand(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { +// AutocompleteContainerOneArg - Autocomplete containers as fist arg. +func AutocompleteContainerOneArg(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { if !validCurrentCmdLine(cmd, args, toComplete) { return nil, cobra.ShellCompDirectiveNoFileComp } |