Open jgrzebyta opened 9 years ago
Check in the groovy buffer to the see any errors.
I am using this to get malabar going:
(add-hook 'after-init-hook
(lambda ()
(message "activate-malabar-mode")
(add-hook 'malabar-java-mode-hook 'flycheck-mode)
(add-hook 'malabar-groovy-mode-hook 'flycheck-mode)
(activate-malabar-mode)))
After which I use malabar-run-groovy
to start the groovy server. You can use run-groovy
directly if that works better for you.
Hi,
I have no idea how to launch groovy-server. Itried both ways: by run-groovy and malabar-run-groovy.
My configuration file is here. For that particular file the server does not start:
If I uncomment
malabar-run-groovy
in the place where it is currently the server starts but java file is not loaded properly. After time I need to kill emacs:If I have in the config file:
Then groovy server starts but immediately emacs switches groovy buffer into java-mode and groovy-mode. Java source file is just open in the fundamental mode.
My core configuration is:
Thanks a lot, J