Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,10 @@ internal abstract class EditorServicesPSHostUserInterface :

#region Properties

#if !PowerShellv3 && !PowerShellv4 && !PowerShellv5r1 // Only available in Windows 10 Update 1 or higher
/// <summary>
/// Returns true if the host supports VT100 output codes.
/// </summary>
public override bool SupportsVirtualTerminal => true;
#endif
public override bool SupportsVirtualTerminal => false;

/// <summary>
/// Returns true if a native application is currently running.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ public TerminalPSHostUserInterface(

#endregion

/// <summary>
/// Returns true if the host supports VT100 output codes.
/// </summary>
public override bool SupportsVirtualTerminal => internalHostUI.SupportsVirtualTerminal;

/// <summary>
/// Gets a value indicating whether writing progress is supported.
/// </summary>
Expand Down