spacemacs/layers/+lang/d
syl20bnr 74fdbb6795 Refactor and simplify company backends declaration
Enabling a company backend for a specific mode was a tedious tasks with code
scattered at different locations, one for local variable definitions, one for
company hook function definitions and another where the backends were pushed to
the local variables (which was problematic, since we ended up pushing the same
backends over and over again with `SPC f e R`, pushes have been replaced by
add-to-list calls in the new macro).

All these steps are now put together at one place with the new macro
spacemacs|add-company-backends, check its docstring for more info on its
arguments.

This macro also allows to define arbitrary buffer local variables to tune
company for specific modes (similar to layer variables via a keyword :variables)

The code related to company backends management has been moved to the
auto-completion layer in the funcs.el file. A nice side effect of this move is
that it enforces correct encapsulation of company backends related code. We can
now easily detect if there is some configuration leakage when the
auto-completion layer is not used. But we loose macro expansion at file loading
time (not sue it is a big concern though).

The function spacemacs|enable-auto-complete was never used so it has been
deleted which led to the deletion of the now empty file core-auto-completion.el.

The example in LAYERS.org regarding auto-completion is now out of date and has
been deleted. An example to setup auto-completion is provided in the README.org
file of the auto-completion layer.
2017-01-02 00:39:04 -05:00
..
img Use + instead of ! for layer categories 2015-09-11 00:13:51 -04:00
config.el Refactor and simplify company backends declaration 2017-01-02 00:39:04 -05:00
packages.el Refactor and simplify company backends declaration 2017-01-02 00:39:04 -05:00
README.org Add more features for D language 2016-10-14 12:33:13 +03:00

D language layer

/TakeV/spacemacs/media/commit/74fdbb6795018a93a665fa2c417589cd4cbd51fc/layers/+lang/d/img/dlogo.png

Description

This simple layer adds support for the D language. It adds d-mode as well as integrating it with auto-completion and syntax-checking.

Install

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

To enable smart D completion, you need to install DCD. Here are installation instructions. After successfully built DCD, you need to copy the binary dcd-server and dcd-client in bin/ directory to somewhere in your $PATH e.g. /usr/local/bin on Linux.

Key bindings

Key Binding Description
SPC m g g Go to definition
SPC m g b Jump back (after go to definition with above command)
SPC m g r find references to all symbol at point