spacemacs/layers/+lang/scala
EstebanMarin 0ccea3c436 Update to default behaviour
When working long hours with Metals and saving and moving between buffers. This feature of automatically showing and writing in buffers breaks HELM, and buffer management stops, rendering Emacs useless. Furthermore, this feature is not that useful. In VIM LSP is off by default. The purpose of this is to make the experience of Scala Developers with Metals a nice one, rather than having Emacs breaking all the time, as has been happening to me. This has saved me hours.

PR-comments
2021-03-20 20:59:25 +00:00
..
img [scala] remove long-deprecated Ensime integration 2021-01-19 21:45:40 +01:00
config.el Update to default behaviour 2021-03-20 20:59:25 +00:00
funcs.el [scala] remove long-deprecated Ensime integration 2021-01-19 21:45:40 +01:00
layers.el [scala] remove long-deprecated Ensime integration 2021-01-19 21:45:40 +01:00
packages.el [scala] remove long-deprecated Ensime integration 2021-01-19 21:45:40 +01:00
README.org Update to default behaviour 2021-03-20 20:59:25 +00:00

Scala layer

/TakeV/spacemacs/media/commit/0ccea3c43696be11649a8e159e608434443918c4/layers/+lang/scala/img/scala.png with /TakeV/spacemacs/media/commit/0ccea3c43696be11649a8e159e608434443918c4/layers/+lang/scala/img/scalameta.png

Description

This layer adds support for the Scala language to Spacemacs.

Features:

  • Syntax highlighting
  • Support for language backend using LSP and Metals
  • Debugging support via dap
  • Auto-completion
  • Treeview support for viewing project structure and triggering compilation
  • Syntax-checking
  • Refactoring
  • Incremental compilation
  • Style linting
  • Optional GGTags search

Layer Installation

To use this configuration layer, add it to your ~/.spacemacs. You will need to add scala to the existing dotspacemacs-configuration-layers list in this file.

  • To turn off the Metals tree view side bar, set scala-auto-treeview to nil.
  • To display SBT in a small buffer at the bottom of the frame, set the scala-sbt-window-position layer variable to bottom.

Backends

The only currently supported language backend is scala-metals. Support for Ensime has been dropped as that project has been dead for some time.

Metals

Currently, you must manually install the Metals server. It is possible to do so via coursier; the latest version can be built using the following commands, where 0.9.8 can be replaced with the current version of Metals:

  ./coursier bootstrap \
    --java-opt -Xss4m \
    --java-opt -Xms100m \
    --java-opt -Dmetals.client=emacs \
    org.scalameta:metals_2.12:0.9.8 \
    -r bintray:scalacenter/releases \
    -r sonatype:snapshots \
    -o /usr/local/bin/metals-emacs -f

Notice that the layer by default overwrites Metals-scala tree view to nil

(defvar scala-auto-treeview nil

This to avoid issues with buffers when rendering VSCode like view, issue described Here.

You will then have the common LSP key bindings; see LSP#key-bindings for more details.

Scalastyle

Scalastyle provides style-checking and linting. The Emacs functionality is provided by Flycheck.

To use scalastyle, it must be present as an executable in your PATH.

To test if scalastyle executable is in your path, run scalastyle in a new terminal, it should output something like:

  $ scalastyle
  scalastyle 0.8.0
  Usage: scalastyle [options] <source directory>
  ...

Finally, enable the syntax-checking layer and set the flycheck-scalastylerc variable to a valid location.

  (setq-default flycheck-scalastylerc "/usr/local/etc/scalastyle_config.xml")

See the flycheck documentation and scalastyle configuration for up-to-date configuration instructions.

Use Java doc-style

To enable java-doc-style, set the variable scala-indent:use-javadoc-style to t

  (setq-default dotspacemacs-configuration-layers '(
    (scala :variables scala-indent:use-javadoc-style t)))

Enable Debug Adapter Protocol (DAP)

The metals backend enables integration with the DAP layer for debugging support.

Automatically insert asterisk in multiline comments

To insert a leading asterisk in multiline comments automatically, set the variable scala-auto-insert-asterisk-in-comments to t.

  (setq-default dotspacemacs-configuration-layers '(
    (scala :variables scala-auto-insert-asterisk-in-comments t)))

Enable GTags as a fallback navigation utility

To enable gtags when in scala-mode set the variable scala-enable-gtags to t.

  (setq-default dotspacemacs-configuration-layers '(
    (scala :variables scala-enable-gtags t)))

Key bindings

Additional major mode key bindings are populated by LSP and DAP.

sbt

Key binding Description
SPC m b . sbt transient state
SPC m b b sbt command