diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-11 10:14:29 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-17 15:32:04 +0000 |
commit | 307da989d898510750d0d40b39fbc321c8b4e853 (patch) | |
tree | 096d144e34163a3f2f2667b808d691ea46f8f68d | |
parent | c392e6c620163b84798e705dfd6608d6429b9677 (diff) | |
download | zsh-307da989d898510750d0d40b39fbc321c8b4e853.tar.gz zsh-307da989d898510750d0d40b39fbc321c8b4e853.tar.xz zsh-307da989d898510750d0d40b39fbc321c8b4e853.zip |
39917: Complete setsid(1) as a precommand
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Zsh/Command/_precommand | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index d278e4709..fa12468e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2016-11-17 Daniel Shahaf <d.s@daniel.shahaf.name> + * 39917: Completion/Zsh/Command/_precommand: Complete setsid(1) + as a precommand + * 39915: Src/exec.c, Test/E01options.ztst: whence: Honor PATH_DIRS option for arguments that start with './' or '../'. diff --git a/Completion/Zsh/Command/_precommand b/Completion/Zsh/Command/_precommand index f848721d9..f57e668c6 100644 --- a/Completion/Zsh/Command/_precommand +++ b/Completion/Zsh/Command/_precommand @@ -1,4 +1,4 @@ -#compdef - nohup eval time rusage noglob nocorrect exec catchsegv aoss hilite eatmydata +#compdef - nohup eval time rusage noglob nocorrect exec catchsegv aoss hilite eatmydata setsid # precommands is made local in _main_complete precommands+=($words[1]) |