From 638454bb0fa68fe567e66686f017d879fed5dd27 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sun, 18 Mar 2001 14:19:02 +0000 Subject: 13661: complete args for SysV initscripts --- ChangeLog | 6 ++++++ Completion/SysV/.distfiles | 4 ++++ Completion/SysV/_sysv_initscripts | 17 +++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 Completion/SysV/.distfiles create mode 100644 Completion/SysV/_sysv_initscripts diff --git a/ChangeLog b/ChangeLog index 7c1a2211a..c2fb753b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-03-18 Clint Adams + + * 13661: Completion/SysV/.distfiles, + Completion/SysV/_sysv_initscripts: complete arguments + for SysV initscripts. + 2001-03-17 Bart Schaefer * unposted (but see 13646 and users/3563): Doc/Zsh/contrib.yo, diff --git a/Completion/SysV/.distfiles b/Completion/SysV/.distfiles new file mode 100644 index 000000000..7864466f0 --- /dev/null +++ b/Completion/SysV/.distfiles @@ -0,0 +1,4 @@ +DISTFILES_SRC=' + .distfiles + _sysv_initscripts +' diff --git a/Completion/SysV/_sysv_initscripts b/Completion/SysV/_sysv_initscripts new file mode 100644 index 000000000..2f0a520f9 --- /dev/null +++ b/Completion/SysV/_sysv_initscripts @@ -0,0 +1,17 @@ +#compdef -p /etc/(init|rc[0-9S]).d/* + +local stdargs nonstdargs expl + +if [[ -f $words[1] ]] +then +nonstdargs=(${${(s: :)${${${${(M)${(f)"$(<$words[1])"}:#[ a-z-|]##\)*}%\)*}##\ #}:gs/|/ /}:s/ //}:#(start|stop|restart|force-reload|reload)}) +stdargs=(${(M)${(s: :)${${${${(M)${(f)"$(<$words[1])"}:#[ a-z-|]##\)*}%\)*}##\ #}:gs/|/ /}:s/ //}:#(start|stop|restart|force-reload|reload)}) +else +nonstdargs=() +stdargs=(start stop restart force-reload) +fi + +_tags nonstdargs stdargs + +_wanted -V stdargs expl "standard arguments" compadd -a stdargs +_wanted nonstdargs expl "non-standard arguments" compadd -a nonstdargs -- cgit 1.4.1