lsp-scala
lsp-scala copied to clipboard
Scala support for lsp-mode using metals
Emacs version: 25.2.2 lsp-scala version: commit b68820cc7aaa9c4f818c4f7999188c20655c3be3 lsp-mode version: 20190123.1915 (from MELPA, non-stable) Here's my LSP-related configuration (from [here](https://scalameta.org/metals/docs/editors/emacs.html)) ```lisp ;; Enable scala-mode and sbt-mode (use-package scala-mode :mode "\\.s\\(cala\\|bt\\)$") (use-package...
Since https://github.com/emacs-lsp/lsp-mode/pull/871 is merged, this repository is deprecated. - [x] Update `README` to explain it has been integrated in `lsp-mode` https://github.com/rossabaker/lsp-scala/pull/29 - [ ] Archive project - [x] Update metals/emacs...
It's silly that we have to clone this instead of installing from a package manager. We should either: 1. Justify our existence as a standalone project and submit to MELPA....
Enhance `scala` layer in **Spacemacs** so it offers the possibility to use `lsp-scala`.
http://twitter.com/scala_lang/status/1120513915786493953 Metals 0.5.0 now supports a lot of the code completion features not available before.
Hi @rossabaker, Thanks for this package. I followed the instructions in here - https://scalameta.org/metals/docs/editors/emacs.html and also went through the README. However, I am not able to get this package to...
```elisp (defvar lsp-scala--config-options `(:hover (:enabled "true"))) (defun lsp-scala--set-configuration () ;; TODO is this going to irritate everything but metals? (lsp--set-configuration `(:metals ,lsp-scala--config-options))) (add-hook 'lsp-after-initialize-hook 'lsp-scala--set-configuration) ``` yields ``` 00:45:17.305 INFO...