10 lines
293 B
EmacsLisp
10 lines
293 B
EmacsLisp
|
;;; lang/scala/doctor.el -*- lexical-binding: t; -*-
|
||
|
|
||
|
(assert! (or (not (featurep! +lsp))
|
||
|
(featurep! :tools lsp))
|
||
|
"This module requires (:tools lsp)")
|
||
|
|
||
|
(if (and (featurep! +lsp)
|
||
|
(not (executable-find "metals-emacs")))
|
||
|
(warn! "metals-emacs isn't installed"))
|