From b1450b6d716d4bf7ac0a96172b1225f8db8c6949 Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Wed, 25 Jun 2025 16:29:30 -0600 Subject: [PATCH] Remove `git_panel::GenerateCommitMessage` in favor of `git::GenerateCommitMessage` (#33421) `git_panel::GenerateCommitMessage` has no handler, `git::GenerateCommitMessage` should be preferred. Could add a `#[action(deprecated_aliases = ["git_panel::GenerateCommitMessage"])]`, but decided not to because that action didn't work. So instead uses of it will show up as keymap errors. Closes #32667 Release Notes: - N/A --- crates/git_ui/src/git_panel.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/git_ui/src/git_panel.rs b/crates/git_ui/src/git_panel.rs index 3cc94f84d3..dce3a52e0a 100644 --- a/crates/git_ui/src/git_panel.rs +++ b/crates/git_ui/src/git_panel.rs @@ -83,7 +83,6 @@ actions!( FocusEditor, FocusChanges, ToggleFillCoAuthors, - GenerateCommitMessage ] );