diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2018-08-13 11:15:32 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2018-08-13 11:17:21 +0000 |
commit | 8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6 (patch) | |
tree | 471a8480c3ef7d1ab1dcd24b5de13b8c1f4f8fd0 | |
parent | b21a641d4c63fce45736b635314e079ae360e5b2 (diff) | |
download | zsh-8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6.tar.gz zsh-8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6.tar.xz zsh-8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6.zip |
unposted: _make: Allow pasted arguments for GNU make's -j option.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_make | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index c5ffd0b7c..ff357f5f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-08-13 Daniel Shahaf <d.s@daniel.shahaf.name> + + * unposted: Completion/Unix/Command/_make: Allow pasted arguments + for GNU make's -j option. + 2018-08-13 Peter Stephenson <p.stephenson@samsung.com> * dana: 43275: Doc/Zsh/mod_mathfunc.yo, Src/Modules/mathfunc.c, diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make index 1761bba71..e23906373 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -177,7 +177,7 @@ _make() { '(- *)'{-h,--help}'[print help message and exit]' '(-i --ignore-errors)'{-i,--ignore-errors}'[ignore errors from recipes]' '*'{-I,--include-dir=}'[search DIRECTORY for included makefiles]:search path for included makefile:->dir' - '(-j --jobs)'{-j,--jobs=}'[allow N jobs at once; infinite jobs with no arg]:number of jobs' + '(-j --jobs)'{-j+,--jobs=}'[allow N jobs at once; infinite jobs with no arg]:number of jobs' '(-k --keep-going)'{-k,--keep-going}"[keep going when some targets can't be made]" '(-l --load-average --max-load)'{-l,--load-average=,--max-load}"[don't start multiple jobs unless load is below N]:load" '(-L --check-symlink-times)'{-L,--check-symlink-times}'[use the latest mtime between symlinks and target]' |