43 lines
1.2 KiB
EmacsLisp
43 lines
1.2 KiB
EmacsLisp
;;; packages.el --- Java functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2016 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-completing-dot ()
|
|
"Insert a period and show company completions."
|
|
(interactive "*")
|
|
(spacemacs//java-delete-horizontal-space)
|
|
(insert ".")
|
|
(company-emacs-eclim 'interactive))
|
|
|
|
(defun spacemacs/java-completing-double-colon ()
|
|
"Insert double colon and show company completions."
|
|
(interactive "*")
|
|
(spacemacs//java-delete-horizontal-space)
|
|
(insert ":")
|
|
(let ((curr (point)))
|
|
(when (s-matches? (buffer-substring (- curr 2) (- curr 1)) ":")
|
|
(company-emacs-eclim 'interactive))))
|
|
|
|
(defun spacemacs//java-delete-horizontal-space ()
|
|
(when (s-matches? (rx (+ (not space)))
|
|
(buffer-substring (line-beginning-position) (point)))
|
|
(delete-horizontal-space t)))
|
|
|
|
(defun spacemacs/java-maven-test ()
|
|
(interactive)
|
|
(eclim-maven-run "test"))
|
|
|
|
(defun spacemacs/java-maven-clean-install ()
|
|
(interactive)
|
|
(eclim-maven-run "clean install"))
|
|
|
|
(defun spacemacs/java-maven-install ()
|
|
(interactive)
|
|
(eclim-maven-run "install"))
|