c285cb5c559638689e3d9e9894a81574ed69d560 |
|
12-Jan-2015 |
Ronny Chevalier <chevalier.ronny@gmail.com> |
zsh-completion: add missing -M completion for timedatectl |
862f4963c6f7778cea9e715eeb11ea959eba6db3 |
|
23-Aug-2013 |
William Giokas <1007380@gmail.com> |
zsh_completion: Fix single letter args
Things like -n to specify the lines to show with systemctl and
journalctl accepts syntax like:
journalctl -n4
systemctl -n14
Previously, typing `-nXX <tab>` where XX is a number, zsh would try to
complete an integer. Now it will see the XX and use the _journalctl_none
completion. This is also how any of the single letter options that take
arguments work as well. |
3e7f60ab32fc2a7d5244d10a0c4e1c3be838409d |
|
15-Aug-2013 |
William Giokas <1007380@gmail.com> |
zsh_completion: Move helper function to autoload
_hosts_or_user_at_host was used by 6 different completions, and
previously was in all 6 of those files. I moved it out to its own file,
_sd_hosts_or_user_at_host. This will be autoloaded for use in other
completion functions. It also allows external completions to use this
function by simply calling _sd_hosts_or_user_at_host as in the systemd
completions. |
20c8382ba7c65be3aa2d141501cc934262f776ba |
|
02-Aug-2013 |
William Giokas <1007380@gmail.com> |
zsh_completion: Split out zsh _timedatectl |