about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2023-11-02 16:26:16 +0100
committerOliver Kiddle <opk@zsh.org>2023-11-02 16:26:16 +0100
commit364ecf7099c3441be1e138a432617b64c207f519 (patch)
tree30cf3267dc7a0c695597fd6b1a862f6da973039d /Completion
parent8e65233747ac8cd125f54931d951036a9af13995 (diff)
downloadzsh-364ecf7099c3441be1e138a432617b64c207f519.tar.gz
zsh-364ecf7099c3441be1e138a432617b64c207f519.tar.xz
zsh-364ecf7099c3441be1e138a432617b64c207f519.zip
52268: update nmcli completion to networkmanager 1.42.2
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Linux/Command/_networkmanager20
1 files changed, 18 insertions, 2 deletions
diff --git a/Completion/Linux/Command/_networkmanager b/Completion/Linux/Command/_networkmanager
index 1e05252b2..d44c313db 100644
--- a/Completion/Linux/Command/_networkmanager
+++ b/Completion/Linux/Command/_networkmanager
@@ -42,8 +42,24 @@ _nm_fields() {
 }
 
 _nm_general() {
-  _arguments "1:command:(status hostname permissions logging help)"
-  # TODO: provide completions for logging
+  local curcontext="$curcontext" state line
+  _arguments "1:command:(status hostname permissions logging reload help)" \
+    "*::arguments:->args"
+
+  case $line[1] in
+    l*)
+      _values -w -S ' ' values \
+        'level:level' \
+        'domains:domain'
+    ;;
+    r*)
+      _describe -t flags 'flag' '(
+        "conf:NetworkManager.conf configuration"
+        "dns-rc:update DNS configuration"
+        "dns-full:restart the DNS plugin"
+      )'
+    ;;
+  esac
 }
 
 _nm_networking() {