summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2014-12-10 01:10:01 +0100
committerRonny Chevalier <chevalier.ronny@gmail.com>2014-12-10 01:10:01 +0100
commit409886c424cfaeeb5cf8928905560e5cac2d492d (patch)
tree615c7fb6dba7f85a092fb26026751078ee31f5c4
parent17c29493dc5c4c3ca886adfdc632d297c5eb06eb (diff)
downloadsystemd-409886c424cfaeeb5cf8928905560e5cac2d492d.tar.gz
shell-completion: systemctl edit
-rw-r--r--TODO2
-rw-r--r--shell-completion/bash/systemctl.in2
-rw-r--r--shell-completion/zsh/_systemctl.in3
3 files changed, 4 insertions, 3 deletions
diff --git a/TODO b/TODO
index 08051ceb01..a09451d777 100644
--- a/TODO
+++ b/TODO
@@ -813,7 +813,7 @@ External:
* zsh shell completion:
- <command> <verb> -<TAB> should complete options, but currently does not
- - systemctl add-wants,add-requires, edit
+ - systemctl add-wants,add-requires
Regularly:
diff --git a/shell-completion/bash/systemctl.in b/shell-completion/bash/systemctl.in
index 9e98a1850e..8063316ec6 100644
--- a/shell-completion/bash/systemctl.in
+++ b/shell-completion/bash/systemctl.in
@@ -139,7 +139,7 @@ _systemctl () {
fi
local -A VERBS=(
- [ALL_UNITS]='is-active is-failed is-enabled status show cat mask preset help list-dependencies'
+ [ALL_UNITS]='is-active is-failed is-enabled status show cat mask preset help list-dependencies edit'
[ENABLED_UNITS]='disable'
[DISABLED_UNITS]='enable'
[REENABLABLE_UNITS]='reenable'
diff --git a/shell-completion/zsh/_systemctl.in b/shell-completion/zsh/_systemctl.in
index 7eefe53aec..04cd94518a 100644
--- a/shell-completion/zsh/_systemctl.in
+++ b/shell-completion/zsh/_systemctl.in
@@ -33,6 +33,7 @@
"preset:Enable/disable one or more unit files based on preset configuration"
"set-default:Set the default target"
"get-default:Query the default target"
+ "edit:Edit one or more unit files"
"is-system-running:Query overall status of the system"
"help:Show documentation for specified units"
"list-dependencies:Show unit dependency tree"
@@ -170,7 +171,7 @@ _systemctl_disabled_units(){_sys_disabled_units=($(__systemctl list-unit-files
_systemctl_masked_units() {_sys_masked_units=( $(__systemctl list-unit-files | { while read -r a b; do [[ $b == "masked" ]] && echo -E - " $a"; done; }) )}
# Completion functions for ALL_UNITS
-for fun in is-active is-failed is-enabled status show cat mask preset help list-dependencies ; do
+for fun in is-active is-failed is-enabled status show cat mask preset help list-dependencies edit ; do
(( $+functions[_systemctl_$fun] )) || _systemctl_$fun()
{
_systemctl_really_all_units