From 4d45a70450c6b09b9888597d8c8671db0c52fee1 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 20 Apr 2022 17:12:43 -0400 Subject: [PATCH] Add breakpoint toggle keybinding in java-mode --- emacs/.emacs.d/config/init-java.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs/.emacs.d/config/init-java.el b/emacs/.emacs.d/config/init-java.el index cc8642d..9425a0d 100644 --- a/emacs/.emacs.d/config/init-java.el +++ b/emacs/.emacs.d/config/init-java.el @@ -13,7 +13,8 @@ (general-def java-debug-map "d" 'dap-java-debug "t" 'dap-java-debug-test-method - "c" 'dap-java-debug-test-class) + "c" 'dap-java-debug-test-class + "b" 'dap-breakpoint-toggle) (with-eval-after-load 'dap-java (setq dap-java-test-additional-args '("-n" "\".*(Test|IT).*\"")))