Compare commits

...

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
c9420cf1a6 Fix tab-completion in c/java mode 2022-04-20 17:12:53 -04:00
Jeremy Dormitzer
4d45a70450 Add breakpoint toggle keybinding in java-mode 2022-04-20 17:12:43 -04:00
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,8 @@
:custom
(company-idle-delay 0.3)
:general
([remap indent-for-tab-command] #'company-indent-or-complete-common))
([remap indent-for-tab-command] #'company-indent-or-complete-common)
([remap c-indent-line-or-region] #'company-indent-or-complete-common))
;; Flycheck gives you error squigglies
(use-package flycheck

View File

@ -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).*\"")))