Skip to content

Commit

Permalink
Merge pull request #187 from tig/fixes_148_move_next_on_select
Browse files Browse the repository at this point in the history
Fixes# 148. Move to next row on select
  • Loading branch information
SteveL-MSFT authored May 2, 2023
2 parents 925e2ca + 13d4426 commit 3545bdc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Microsoft.PowerShell.ConsoleGuiTools/ConsoleGui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ private void AddListView(Window win)
_listView.Height = Dim.Fill();
_listView.AllowsMarking = _applicationData.OutputMode != OutputModeOption.None;
_listView.AllowsMultipleSelection = _applicationData.OutputMode == OutputModeOption.Multiple;
_listView.AddKeyBinding (Key.Space, Command.ToggleChecked, Command.LineDown);

win.Add(_listView);
}
Expand Down

0 comments on commit 3545bdc

Please sign in to comment.