summary refs log tree commit diff
diff options
context:
space:
mode:
authorTomasz Pala <gotar@polanet.pl>2017-08-16 20:54:20 +0200
committerOliver Kiddle <opk@zsh.org>2017-08-16 23:58:19 +0200
commit8197af9b9c83d06dfe27478e9ce977b1e47883f9 (patch)
tree4aa25686d2c77665f3abb81d6a1c2249f729b188
parentb1a1a342504f8013907244c3a2728571e7839543 (diff)
downloadzsh-8197af9b9c83d06dfe27478e9ce977b1e47883f9.tar.gz
zsh-8197af9b9c83d06dfe27478e9ce977b1e47883f9.tar.xz
zsh-8197af9b9c83d06dfe27478e9ce977b1e47883f9.zip
users/22834: allow completion after -c and a few other new ip options
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_ip15
2 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a1602ff75..37e07f815 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-08-16  Oliver Kiddle  <opk@zsh.org>
 
+	* Tomasz Pala: users/22834: Completion/Unix/Command/_ip:
+	allow completion after -c and a few other new options
+
 	* 41556: Completion/Solaris/Command/_snoop
 	Completion/Unix/Command/_ngrep, Completion/Unix/Command/_tcpdump,
 	Completion/Unix/Type/_bpf_filters: complete BPF (libpcap) filters
diff --git a/Completion/Unix/Command/_ip b/Completion/Unix/Command/_ip
index 6e1cc3b78..74101c646 100644
--- a/Completion/Unix/Command/_ip
+++ b/Completion/Unix/Command/_ip
@@ -530,15 +530,30 @@ args=(
     /$'[^\0]#\0'/
 )
 
+# TODO:
+# -b*atch <FILENAME>
+# -force (for batch mode)
+# -l*oops <COUNT>
+# -n*etns <NETNS>
+# -rc, -rcvbuf<SIZE>
 _regex_words options "ip options" \
   '-h*uman:output statistics with human readable values' \
   '-i*ec:print human readable rates in IEC units (ie. 1K = 1024)' \
   '-s*tatistics:output statistics' \
+  '-d*etails:output more detailed information' \
+  '-c*olor:color output' \
+  '-a*ll:executes specified command over all objects' \
   '-f*amily:select protocol family:$subcmd_family' \
   '-4:IPv4' \
   '-6:IPv6' \
+  '-B:family bridge' \
+  '-D:family DECnet' \
+  '-I:family IPX' \
+  '-M:family MPLS' \
   '-0:link protocol, no networking' \
   '-o*neline:output one record per line' \
+  '-t*imestamp:display current time when using monitor option' \
+  '-ts*hort:display current time in shorter format when using monitor option' \
   '-r*esolve:use system resolver for DNS names'
 args+=("$reply[@]" "#")