diff --git a/lib/grunt/help.js b/lib/grunt/help.js index c01f727da..d761ef565 100644 --- a/lib/grunt/help.js +++ b/lib/grunt/help.js @@ -12,7 +12,8 @@ exports.initCol1 = function(str) { }; exports.initWidths = function() { // Widths for options/tasks table output. - exports.widths = [1, col1len, 2, 76 - col1len]; + var commandWidth = Math.max(col1len + 20, 76); + exports.widths = [1, col1len, 2, commandWidth - col1len]; }; // Render an array in table form.