make -j: Complete up to number of CPUs * 2.
This commit is contained in:
parent
6f58a69991
commit
c73cf422bd
@ -25,7 +25,7 @@ _make()
|
|||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
--jobs|-j)
|
--jobs|-j)
|
||||||
COMPREPLY=( $( compgen -W "{1..$(_ncpus)}" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "{1..$(( $(_ncpus)*2 ))}" -- "$cur" ) )
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user