From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 7/7] autocompletion: add description support Date: Mon, 19 Jun 2017 21:20:50 +0200 Message-ID: <1497900050-27692-7-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1497900050-27692-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0542789186062549025==" List-Id: --===============0542789186062549025== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- src/bash-completion/network | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/bash-completion/network b/src/bash-completion/network index 091c1cb..f7c58a9 100644 --- a/src/bash-completion/network +++ b/src/bash-completion/network @@ -59,6 +59,16 @@ _network_color() { fi } =20 +_network_description() { + local words=3D( $@ ) + + local commands=3D"edit show" + local cmd=3D"$(_network_find_on_cmdline "${commands}")" + if [[ -z "${cmd}" ]]; then + COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) + return 0 + fi +} _network_device() { local words=3D( $@ ) =20 @@ -258,7 +268,7 @@ _network_port() { _network_port_subcommand() { local words=3D( $@ ) =20 - local commands=3D"color create down edit identify remove status up" + local commands=3D"color create description down edit identify remove status= up" local cmd=3D"$(_network_find_on_cmdline "${commands}")" if [[ -z "${cmd}" ]]; then COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) @@ -270,6 +280,9 @@ _network_port_subcommand() { color) _network_color ${args} ;; + description) + _network_description ${args} + ;; esac =20 } @@ -378,7 +391,7 @@ _network_zone_subcommand() { =20 local words=3D( $@ ) =20 - local commands=3D"color config disable down edit enable identify port renam= e status up" + local commands=3D"color config description disable down edit enable identif= y port rename status up" local cmd=3D"$(_network_find_on_cmdline "${commands}")" if [[ -z "${cmd}" ]]; then COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) @@ -396,6 +409,9 @@ _network_zone_subcommand() { color) _network_color ${args} ;; + description) + _network_description ${args} + ;; esac } =20 --=20 2.6.3 --===============0542789186062549025==--