mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 03:50:24 +10:00
10 lines
234 B
EmacsLisp
10 lines
234 B
EmacsLisp
(defun yas-java-project-package ()
|
|
(or (and (eq major-mode 'java-mode)
|
|
(+java-current-package))
|
|
""))
|
|
|
|
(defun yas-java-class-name ()
|
|
(or (and (eq major-mode 'java-mode)
|
|
(+java-current-class))
|
|
""))
|