We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8ed68 commit b8f25f2Copy full SHA for b8f25f2
src/Views/InteractiveRebase.axaml.cs
@@ -58,6 +58,16 @@ protected override void OnKeyDown(KeyEventArgs e)
58
vm.ChangeAction(item, Models.InteractiveRebaseAction.Drop);
59
e.Handled = true;
60
}
61
+ else if (e.Key == Key.Up)
62
+ {
63
+ vm.MoveItemUp(item);
64
+ e.Handled = true;
65
+ }
66
+ else if (e.Key == Key.Down)
67
68
+ vm.MoveItemDown(item);
69
70
71
else
72
{
73
base.OnKeyDown(e);
0 commit comments