Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
style: use tabs instead of spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dmako authored Jul 30, 2018
1 parent 3349311 commit 5a7e3e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LineEditor/getline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ void ShowCompletions (string prefix, string [] completions)
if (Console.CursorTop > target_line){
var delta = Console.CursorTop-target_line+window_height;
Console.CursorLeft = 0;
Console.CursorTop = target_line;
Console.CursorTop = target_line;
for (int i = 0; i < delta+1; i++){
for (int c = Console.WindowWidth; c > 0; c--)
Console.Write (" "); // To debug use ("{0}", i%10);
Expand Down

0 comments on commit 5a7e3e2

Please sign in to comment.