spacemacs/layers/+lang/java/funcs.el
duianto 0a06c7ca6b Fix filenames in layer file headers
Also fixed the groovy/funcs.el header which said: Java
2020-02-20 00:07:30 +01:00

154 lines
4.4 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; funcs.el --- Java functions File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Lukasz Klich <klich.lukasz@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs//java-backend ()
"Returns selected backend."
(if java-backend
java-backend
(cond
((configuration-layer/layer-used-p 'lsp) 'lsp)
(t 'meghanada))))
(defun spacemacs//java-setup-backend ()
"Conditionally setup java backend."
(pcase (spacemacs//java-backend)
(`meghanada (spacemacs//java-setup-meghanada))
(`lsp (spacemacs//java-setup-lsp))))
(defun spacemacs//java-setup-company ()
"Conditionally setup company based on backend."
(pcase (spacemacs//java-backend)
(`meghanada (spacemacs//java-setup-meghanada-company))
(`lsp (spacemacs//java-setup-lsp-company))))
(defun spacemacs//java-setup-dap ()
"Conditionally setup elixir DAP integration."
;; currently DAP is only available using LSP
(pcase (spacemacs//java-backend)
(`lsp (spacemacs//java-setup-lsp-dap))))
(defun spacemacs//java-setup-flycheck ()
"Conditionally setup flycheck based on backend."
(pcase (spacemacs//java-backend)
(`meghanada (spacemacs//java-setup-meghanada-flycheck))
(`lsp (spacemacs//java-setup-lsp-flycheck))))
;; meghanada
(defun spacemacs//java-setup-meghanada ()
"Setup Meghanada."
(require 'meghanada)
;; jump handler
(add-to-list 'spacemacs-jump-handlers
'(meghanada-jump-declaration
:async spacemacs//java-meghanada-server-livep))
;; auto-install meghanada server
(let ((dest-jar (meghanada--locate-server-jar)))
(unless dest-jar
(meghanada-install-server)))
;; enable meghanada
(meghanada-mode))
(defun spacemacs//java-setup-meghanada-company ()
"Setup Meghanada auto-completion."
(meghanada-company-enable))
(defun spacemacs//java-setup-meghanada-flycheck ()
"Setup Meghanada syntax checking."
(when (spacemacs/enable-flycheck 'java-mode)
(require 'flycheck-meghanada)
(add-to-list 'flycheck-checkers 'meghanada)
(flycheck-mode)))
(defun spacemacs//java-meghanada-server-livep ()
"Return non-nil if the Meghanada server is up."
(and meghanada--client-process (process-live-p meghanada--client-process)))
;; Maven
(defun spacemacs/mvn-clean-compile ()
"Recompile using maven."
(interactive)
(mvn-clean)
(mvn-compile))
;; Gradle
(defun spacemacs/gradle-clean ()
"Execute 'gradle clean' command."
(interactive)
(gradle-execute "clean"))
(defun spacemacs/gradle-clean-build ()
"Execute 'gradle clean build' command."
(interactive)
(gradle-execute "clean build"))
(defun spacemacs/gradle-test-buffer ()
"Execute 'gradle test' command against current buffer tests."
(interactive)
(gradle-single-test (file-name-base (buffer-file-name))))
;; Misc
(defun spacemacs//java-delete-horizontal-space ()
(when (s-matches? (rx (+ (not space)))
(buffer-substring (line-beginning-position) (point)))
(delete-horizontal-space t)))
;; LSP Java
(defun spacemacs//java-setup-lsp ()
"Setup LSP Java."
(if (configuration-layer/layer-used-p 'lsp)
(progn
(require 'lsp-java)
(lsp))
(message "`lsp' layer is not installed, please add `lsp' layer to your dotfile.")))
(defun spacemacs//java-setup-lsp-company ()
"Setup lsp auto-completion."
(if (configuration-layer/layer-used-p 'lsp)
(progn
(spacemacs|add-company-backends
:backends company-lsp
:modes java-mode
:append-hooks nil
:call-hooks t)
(company-mode))
(message "`lsp' layer is not installed, please add `lsp' layer to your dotfile.")))
(defun spacemacs//java-setup-lsp-dap ()
"Setup DAP integration."
(require 'dap-java)
(spacemacs/set-leader-keys-for-major-mode 'java-mode
;; debug
"ddj" 'dap-java-debug
"dtt" 'dap-java-debug-test-method
"dtc" 'dap-java-debug-test-class
;; run
"tt" 'dap-java-run-test-method
"tc" 'dap-java-run-test-class))
(defun spacemacs//java-setup-lsp-flycheck ()
"Setup LSP Java syntax checking."
(if (configuration-layer/layer-used-p 'lsp)
(when (spacemacs/enable-flycheck 'java-mode)
(require 'lsp-ui-flycheck)
(lsp-ui-flycheck-enable nil)
(flycheck-mode))
(message "`lsp' layer is not installed, please add `lsp' layer to your dotfile.")))