From 16004d4c6a4f1ecd3a68ad43438583f19d5edd4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Wed, 29 Jan 2025 03:02:03 -0300 Subject: [PATCH] Fix deprecated alias for toggling hunks (#23818) Release Notes: - N/A --- crates/editor/src/actions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/editor/src/actions.rs b/crates/editor/src/actions.rs index 13f9d6f23186566b967caf0f25152e8b1cfbe162..fe2ae0be49ed074886dc9a366a113961277afbc6 100644 --- a/crates/editor/src/actions.rs +++ b/crates/editor/src/actions.rs @@ -397,4 +397,4 @@ gpui::actions!( action_as!(go_to_line, ToggleGoToLine as Toggle); action_with_deprecated_aliases!(editor, OpenSelectedFilename, ["editor::OpenFile"]); -action_with_deprecated_aliases!(editor, ToggleSelectedDiffHunks, ["editor::ToggleDiffHunk"]); +action_with_deprecated_aliases!(editor, ToggleSelectedDiffHunks, ["editor::ToggleHunkDiff"]);