Skip to content

Commit

Permalink
Option to use Pager to display help text (#216)
Browse files Browse the repository at this point in the history
Co-Authored-By: mpipo <themelo64@gmail.com>
  • Loading branch information
rmanosuthi authored and natemcmaster committed Feb 22, 2019
1 parent 79c41bc commit 5442748
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/CommandLineUtils/CommandLineApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,11 @@ public string Name
/// </summary>
public List<CommandOption> Options { get; private set; }

/// <summary>
/// Whether a Pager should be used to display help text.
/// </summary>
public bool UsePagerForHelpText { get; set; } = true;

/// <summary>
/// All names by which the command can be referenced. This includes <see cref="Name"/> and an aliases added in <see cref="AddName"/>.
/// </summary>
Expand Down Expand Up @@ -839,7 +844,7 @@ public virtual void ShowHint()
/// <summary>
/// Show full help.
/// </summary>
public void ShowHelp() => ShowHelp(usePager: true);
public void ShowHelp() => ShowHelp(usePager: UsePagerForHelpText);

/// <summary>
/// Show full help.
Expand Down

0 comments on commit 5442748

Please sign in to comment.