crates/git_ui/src/git_panel.rs 🔗
@@ -2825,6 +2825,12 @@ impl GitPanel {
.child(
div()
.pr_2p5()
+ .on_action(|&editor::actions::MoveUp, _, cx| {
+ cx.stop_propagation();
+ })
+ .on_action(|&editor::actions::MoveDown, _, cx| {
+ cx.stop_propagation();
+ })
.child(EditorElement::new(&self.commit_editor, panel_editor_style)),
)
.child(