From c625b78eb4a024f5759e2a63996495756441d86c Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 3 Jun 2024 13:15:47 -0700 Subject: [PATCH] fix(gdscript): replace removed functions with new binding This commit removes the keybinds to add and remove a breakpoint in a gdscript buffer, which were removed from gdscript-mode long ago, and replaces them with one binding to toggle a breakpoint. Fix: #7254 --- modules/lang/gdscript/config.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/lang/gdscript/config.el b/modules/lang/gdscript/config.el index f8496eeba..954bc25d6 100644 --- a/modules/lang/gdscript/config.el +++ b/modules/lang/gdscript/config.el @@ -28,9 +28,8 @@ :desc "Run current scene" "s" #'gdscript-godot-run-current-scene) (:prefix ("d" . "debug") - :desc "Add breakpoint" "a" #'gdscript-debug-add-breakpoint + :desc "Toggle breakpoint" "d" #'gdscript-debug-toggle-breakpoint :desc "Display breakpoint buffer" "b" #'gdscript-debug-display-breakpoint-buffer - :desc "Remove breakpoint" "d" #'gdscript-debug-remove-breakpoint :desc "Continue execution" "c" #'gdscript-debug-continue :desc "Next" "n" #'gdscript-debug-next :desc "Step" "s" #'gdscript-debug-step)