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 655901aCopy full SHA for 655901a
src/Views/InteractiveRebase.axaml.cs
@@ -60,6 +60,20 @@ protected override void OnKeyDown(KeyEventArgs e)
60
}
61
else
62
{
63
+ if (e.KeyModifiers.HasFlag(OperatingSystem.IsMacOS() ? KeyModifiers.Meta : KeyModifiers.Control))
64
+ {
65
+ if (e.Key == Key.Up)
66
67
+ vm.MoveItemUp(item);
68
+ e.Handled = true;
69
+ }
70
+ else if (e.Key == Key.Down)
71
72
+ vm.MoveItemDown(item);
73
74
75
76
+
77
base.OnKeyDown(e);
78
79
0 commit comments