Add Groovy REPL support

This commit is contained in:
Seong Yong-ju 2020-05-06 23:49:05 +09:00
parent b5c4fce0b1
commit 3e7624cfc0
2 changed files with 8 additions and 1 deletions

View file

@ -45,4 +45,5 @@ If the depth is 2, the first two directories are removed: net.lissner.game.")
(use-package! groovy-mode
:mode "\\.g\\(?:radle\\|roovy\\)$"
:config
(set-eval-handler! 'groovy-mode "groovy"))
(set-eval-handler! 'groovy-mode "groovy")
(set-repl-handler! 'groovy-mode #'+java/groovy-open-repl))