File tree 1 file changed +33
-5
lines changed
src/PowerShellEditorServices/Session/Host
1 file changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -688,30 +688,58 @@ private void WriteDebuggerBanner(DebuggerStopEventArgs eventArgs)
688
688
}
689
689
}
690
690
691
+ /// <summary>
692
+ ///
693
+ /// </summary>
691
694
public static ConsoleColor BackgroundColor
692
695
{
693
696
get ;
694
697
set ;
695
698
}
696
699
697
- // Error colors
700
+ /// <summary>
701
+ ///
702
+ /// </summary>
698
703
public ConsoleColor ErrorForegroundColor { get ; set ; } = ConsoleColor . Red ;
704
+ /// <summary>
705
+ ///
706
+ /// </summary>
699
707
public ConsoleColor ErrorBackgroundColor { get ; set ; } = BackgroundColor ;
700
708
701
- // Warning colors
709
+ /// <summary>
710
+ ///
711
+ /// </summary>
702
712
public ConsoleColor WarningForegroundColor { get ; set ; } = ConsoleColor . Yellow ;
713
+ /// <summary>
714
+ ///
715
+ /// </summary>
703
716
public ConsoleColor WarningBackgroundColor { get ; set ; } = BackgroundColor ;
704
717
705
- // Debug colors
718
+ /// <summary>
719
+ ///
720
+ /// </summary>
706
721
public ConsoleColor DebugForegroundColor { get ; set ; } = ConsoleColor . Yellow ;
722
+ /// <summary>
723
+ ///
724
+ /// </summary>
707
725
public ConsoleColor DebugBackgroundColor { get ; set ; } = BackgroundColor ;
708
726
709
- // Verbose colors
727
+ /// <summary>
728
+ ///
729
+ /// </summary>
710
730
public ConsoleColor VerboseForegroundColor { get ; set ; } = ConsoleColor . Yellow ;
731
+ /// <summary>
732
+ ///
733
+ /// </summary>
711
734
public ConsoleColor VerboseBackgroundColor { get ; set ; } = BackgroundColor ;
712
735
713
- // Progress colors
736
+ /// <summary>
737
+ ///
738
+ /// </summary>
714
739
public ConsoleColor ProgressForegroundColor { get ; set ; } = ConsoleColor . Yellow ;
740
+ /// <summary>
741
+ ///
742
+ /// </summary>
715
743
public ConsoleColor ProgressBackgroundColor { get ; set ; } = ConsoleColor . DarkCyan ;
716
744
717
745
private async Task StartReplLoop ( CancellationToken cancellationToken )
You can’t perform that action at this time.
0 commit comments