Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-13 | bash completion: fix __get_startable_units | Dan Kilman | |
2014-04-03 | bash completion: Add -r/--recursive to systemctl | Thomas Hindoe Paaboel Andersen | |
2014-03-25 | systemctl: --kill-mode is long long gone, don't mention it in the man page | Lennart Poettering | |
2014-02-06 | bash-completion: fix completion of complete verbs | Zbigniew Jędrzejewski-Szmek | |
When doing 'command verb<TAB>', the arguments for verb would be proposed, but it is too early. We should complete verb first. https://bugs.freedesktop.org/show_bug.cgi?id=74596 | |||
2014-01-15 | shell-completion: remove load from systemctl | Lukas Nykryn | |
2013-12-05 | shell-completion: busctl | Zbigniew Jędrzejewski-Szmek | |
2013-11-30 | shell-completion: systemctl cat | Zbigniew Jędrzejewski-Szmek | |
Also update -H help string to follow the binaries. | |||
2013-11-11 | shell: add list-timers to systemctl completions | Dave Reisner | |
2013-10-21 | shell-completion: dump has moved to systemd-analyze | Zbigniew Jędrzejewski-Szmek | |
Rename NO_OPTION to STANDALONE for consistency with other files. | |||
2013-09-20 | completion/systemctl: add missing list-sockets verb | Dave Reisner | |
2013-08-12 | shell-completion: tell bash about --state | Zbigniew Jędrzejewski-Szmek | |
2013-07-30 | bash-completion: use a better definition of __contains_word | Dave Reisner | |
- scope the iterator var - use the correct, quoted, non-expansion prone positional parameter notation - prevent expansion on RHS of comparison - remove unneeded explicit returns. This really should be defined only once... | |||
2013-06-17 | journalctl,loginctl,systemctl,systemd-cgls: add -l as alias for --full | Daniel Albers | |
https://bugs.freedesktop.org/show_bug.cgi?id=65850 | |||
2013-05-30 | systemctl: add commands set-default and get-default | Václav Pavlín | |
systemctl set-default NAME links the default.target to the given unit, get-default prints out the path to the currently set default target. | |||
2013-04-24 | systemctl: show reverse dependencies or before/after ordering | Zbigniew Jędrzejewski-Szmek | |
Also update completion scripts a bit. | |||
2013-04-22 | shell-completion: add shell completion for "systemctl help" | Harald Hoyer | |
2013-04-17 | shell-completion: use -a to see "empty" properties | Zbigniew Jędrzejewski-Szmek | |
2013-04-17 | bash-completion: --property support | Zbigniew Jędrzejewski-Szmek | |
Just bash. | |||
2013-04-11 | systemctl: allow multiple arguments to --type | Zbigniew Jędrzejewski-Szmek | |
This mirrors --property, and is generally useful. New functionality is used in bash completion. In case of zsh completion, new functionality is less useful because of caching. Nevertheless, zsh completion for restart is made to behave more-or-less the same as bash completion. At least sockets can be restarted. | |||
2013-04-10 | shell-completion: show failed units as candidates for start | Zbigniew Jędrzejewski-Szmek | |
Also show disabled units as candidates for reenable, since it works and one may want to do enable-or-reenable in one line. | |||
2013-04-10 | shell-completion: replace printf with echo | Zbigniew Jędrzejewski-Szmek | |
It is faster to use a bash built-in, then to invoke an external program. The problem of unit names starting with a dash is solved by prepending a space. Spaces are ignored anyway. For zsh, replace echo "$unit", which is vulnerable to dashes, with echo " $unit". | |||
2013-04-05 | shell-completion: work on session shell is --user is used | Zbigniew Jędrzejewski-Szmek | |
https://bugs.freedesktop.org/show_bug.cgi?id=61695 | |||
2013-03-03 | bash-completion: split completions and move to new location | Michael Biebl | |
Split the large bash completion script into separate, smaller files each named after the binary it is used for and move the files to /usr/share/bash-completion/completions. This way the completions can be loaded on demand and we only install the completions for the tools we actually build. The old path /etc/bash_completion.d/ is deprecated and will disappear in the future. |