summaryrefslogtreecommitdiff
path: root/completions/iwconfig
diff options
context:
space:
mode:
Diffstat (limited to 'completions/iwconfig')
-rw-r--r--completions/iwconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/iwconfig b/completions/iwconfig
index 899f1493..36213d2c 100644
--- a/completions/iwconfig
+++ b/completions/iwconfig
@@ -7,8 +7,8 @@ _iwconfig()
case $prev in
mode)
- COMPREPLY=( $( compgen -W 'managed ad-hoc master \
- repeater secondary monitor' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'managed ad-hoc master repeater secondary
+ monitor' -- "$cur" ) )
return 0
;;
essid)
@@ -80,8 +80,8 @@ _iwconfig()
_available_interfaces -w
fi
else
- COMPREPLY=( $( compgen -W 'essid nwid mode freq channel sens mode \
- ap nick rate rts frag enc key power txpower commit' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'essid nwid mode freq channel sens mode ap
+ nick rate rts frag enc key power txpower commit' -- "$cur" ) )
fi
} &&