The Elixir Language Server provides a server that runs in the background, providing IDEs, editors, and other tools with information about Elixir Mix projects. It adheres to the Language Server Protocol, a standard for frontend-independent IDE support. Debugger integration is accomplished through the similar VS Code Debug Protocol.
The elixir-lsp/elixir-ls repo began as a fork when the original repo at JakeBecker/elixir-ls became inactive for an extended period of time. So we decided to start an active fork to merge dormant PR's and fix issues where possible. We also believe in an open and shared governance model to share the work instead of relying on one person to shoulder the whole burden.
The original repository has now been deprecated in favor of this one. Any IDE extensions that use ElixirLS should switch to using this repository.
- Debugger support
- Automatic, incremental Dialyzer analysis
- Automatic inline suggestion of @specs based on Dialyzer's inferred success typings
- Inline reporting of build warnings and errors
- Documentation lookup on hover
- Go-to-definition
- Code completion
- Code formatter
- Find references to functions and modules (Thanks to @mattbaker)
- Quick symbol lookup in file (Thanks to @mattbaker)
- Quick symbol lookup in workspace and stdlib (both Elixir and erlang) (@lukaszsamson)
Note: On first run Dialyzer will build a PLT cache which will take a considerable amount of CPU time (usually 10+ minutes). After that is complete the CPU usage will go back to normal. Alternatively instead of waiting you can disable Dialyzer in the settings.
IDE | Plugin | Support |
---|---|---|
Emacs | eglot | |
Emacs | lsp-mode | Supports debugger via dap-mode |
Kakoune | kak-lsp | Limitations |
Kate | built-in LSP Client plugin | Does not support debugger |
Neovim | coc.nvim | Does not support debugger |
Neovim | nvim-dap | Supports debugger only |
Neovim | nvim-lspconfig | Does not support debugger |
Nova | nova-elixir-ls | |
Sublime Text | LSP-elixir | Does not support debugger |
Vim/Neovim | ALE | Does not support debugger or @spec suggestions |
Vim/Neovim | elixir-lsp/coc-elixir | Does not support debugger |
Vim/Neovim | vim-lsp | Does not support debugger |
VS Code | elixir-lsp/vscode-elixir-ls | Supports all ElixirLS features |
Please feel free to create and publish your own client packages and add them to this list!
The installation process for ElixirLS depends on your editor.
VSCode
Please install the extension via the following link: https://marketplace.visualstudio.com/items?itemName=JakeBecker.elixir-ls\
Emacs Installation Instructions
Download the latest release:
https://github.com/elixir-lsp/elixir-ls/releases/latest and unzip it into a
directory (this is the directory referred to as the
"path-to-elixir-ls/release"
below)
If using lsp-mode
add this configuration:
(use-package lsp-mode
:commands lsp
:ensure t
:diminish lsp-mode
:hook
(elixir-mode . lsp)
:init
(add-to-list 'exec-path "path-to-elixir-ls/release"))
For eglot use:
(require 'eglot)
;; This is optional. It automatically runs `M-x eglot` for you whenever you are in `elixir-mode`
(add-hook 'elixir-mode-hook 'eglot-ensure)
;; Make sure to edit the path appropriately, use the .bat script instead for Windows
(add-to-list 'eglot-server-programs '(elixir-mode "path-to-elixir-ls/release/language_server.sh"))
Elixir:
- 1.12 minimum
Erlang:
- OTP 22 minimum
It is generally recommended to install Elixir and Erlang via ASDF so that you can have different projects using different versions of Elixir without having to change your system-installed version. ElixirLS can detect and use the version of Elixir and Erlang that you have configured in ASDF.
ElixirLS provides debugger support adhering to the Debug Adapter Protocol which is closely related to the Language Server Protocol.
When debugging in Elixir or Erlang, only modules that have been "interpreted" (using :int.ni/1
or :int.i/1
) will accept breakpoints or show up in stack traces. The debugger in ElixirLS automatically interprets all modules in the Mix project and its dependencies before launching the Mix task. Therefore, you can set breakpoints anywhere in your project or dependency modules.
Please note that there is currently a limit of 100 breakpoints.
To debug modules in .exs files (such as tests), they must be specified under requireFiles in your launch configuration so that they can be loaded and interpreted before running the task. For example, the default launch configuration for "mix test" in the VSCode plugin is shown below:
{
"type": "mix_task",
"name": "mix test",
"request": "launch",
"task": "test",
"taskArgs": [
"--trace"
],
"startApps": true,
"projectDir": "${workspaceRoot}",
"requireFiles": [
"test/**/test_helper.exs",
"test/**/*_test.exs"
]
}
Currently, to debug a single test or a single test file, it is necessary to modify taskArgs
and ensure that no other tests are required in requireFiles
.
{
"type": "mix_task",
"name": "mix test",
"request": "launch",
"task": "test",
"taskArgs": ["tests/some_test.exs:123"],
"startApps": true,
"projectDir": "${workspaceRoot}",
"requireFiles": [
"test/**/test_helper.exs",
"test/some_test.exs"
]
}
To debug Phoenix applications using ElixirLS, you can use the following launch configuration:
{
"type": "mix_task",
"name": "phx.server",
"request": "launch",
"task": "phx.server",
"projectDir": "${workspaceRoot}"
}
Please make sure that startApps
is not set to true
. To clarify, startApps
is a configuration option in ElixirLS debugger that controls whether or not to start the applications in the mix project before running the task. In the case of Phoenix applications, setting startApps
to true
can interfere with the application's normal startup process and cause issues.
If you are running tests in the Phoenix application, you may need to set startApps
to true to ensure that the necessary applications are started before the tests run.
It's important to note that NIF (Native Implemented Function) modules cannot be interpreted due to limitations in :int
. Therefore, these modules need to be excluded using the excludeModules
option. This option can also be used to disable interpretation for specific modules when it's not desirable, such as when performance is unsatisfactory.
{
"type": "mix_task",
"name": "mix test",
"request": "launch",
"task": "test",
"taskArgs": ["--trace"],
"projectDir": "${workspaceRoot}",
"requireFiles": [
"test/**/test_helper.exs",
"test/**/*_test.exs"
],
"excludeModules": [
":some_nif",
"Some.SlowModule"
]
}
Function breakpoints in ElixirLS allow you to break on the first line of every clause of a specific function. In order to set a function breakpoint, you need to specify the function in the format of MFA (module, function, arity).
For example, to set a function breakpoint on the foo
function in the MyModule
module that takes one argument, you would specify it as MyModule.foo/1
.
Please note that function breakpoints only work for public functions, and do not support breaking on private functions.
Break conditions allow you to specify an expression that, when evaluated, determines whether the breakpoint should be triggered or not. The expression is evaluated within the context of the breakpoint, which includes all bound variables.
For example, you could set a breakpoint on a line of code that sets a variable x
, and add a break condition of x > 10
. This would cause the breakpoint to only trigger if the value of x
is greater than 10
when that line of code is executed.
However, it's important to note that the expression evaluator used by ElixirLS has some limitations. For example, it doesn't support some Elixir language features, such as macros and some built-in functions. In addition, the expression evaluator is not as powerful as the one used by the Elixir interpreter, so some expressions that work in the interpreter may not work in ElixirLS.
A hit condition is an optional parameter that can be set on a breakpoint to control how many times a breakpoint should be hit before stopping the process. It is expressed as an integer and can be used to filter out uninteresting hits, allowing the process to continue until a certain condition is met.
For example, if you have a loop that runs 10 times and you want to stop the process only when the loop reaches the 5th iteration, you can set a breakpoint with a hit condition of 5. This will cause the breakpoint to be hit only on the 5th iteration of the loop, and the process will continue to run until then.
Log points are a type of breakpoint that logs a message to the standard output without stopping the program execution. When a log point is hit, the message is evaluated and printed to the console. The message can include interpolated expressions enclosed in curly braces {}
, e.g. my_var is {inspect(my_var)}
which will be evaluated in the context of the breakpoint. To escape the curly braces, you can use the escape sequence \{
and \}
.
It's important to note that as of version 1.51 of the Debug Adapter Protocol specification, log messages are not supported on function breakpoints.
The debugger's expression evaluator has some limitations due to how the Erlang VM works. Specifically, the evaluator is implemented using :int, which works at the level of individual BEAM instructions. As a result, it returns multiple versions of variables in Static Single Assignment form, without indicating which one is valid in the current Elixir scope.
To work around this, the evaluator uses a heuristic to select the highest versions of variables, but this doesn't always behave correctly in all cases. For example, in the following code snippet:
a = 4
if true do
a = 5
end
some
If a breakpoint is set on the line with some_function()
, the last bound value for a seen by the expression breakpoint evaluator will be 5
, even though it should be 4
.
Additionally, while all bound variables are accessible in the expression evaluator, it doesn't support accessing module attributes since those are determined at compile-time.
The ElixirLS provides automatic builds and error reporting. By default, builds are triggered automatically when files are saved, but you can also enable "autosave" in your IDE to trigger builds as you type. If you prefer to disable automatic builds, you can set the elixirLS.autoBuild
configuration option to false
.
Internally, ElixirLS uses the mix compile
task to compile Elixir code. When errors or warnings are encountered during compilation, they are returned as LSP diagnostics. Your IDE may display them inline in your code as well as in the "Problems" pane. This allows you to quickly identify and fix errors in your code as you work.
Dialyzer is a static analysis tool used to identify type discrepancies, unused code, unreachable code, and other warnings in Erlang and Elixir code. ElixirLS provides automatic integration with Dialyzer to help catch issues early on in the development process.
After each successful build, ElixirLS automatically analyzes the project with Dialyzer and maintains a "manifest" file in .elixir_ls/dialyzer_manifest to store the results of the analysis. The initial analysis of a project can take a few minutes, but subsequent analyses are usually very fast, often taking less than a second. ElixirLS also looks at your modules' abstract code to determine whether they reference any modules that haven't been analyzed and includes them automatically.
You can control which warnings are shown using the elixirLS.dialyzerWarnOpts
setting in your project or IDE's settings.json
. You can find available options in dialyzer documentation under the section "Warning options".
To disable Dialyzer completely, set elixirLS.dialyzerEnabled
to false.
If Dialyzer gets stuck and emits incorrect or no longer applying warnings, it's best to restart the language server.
ElixirLS provides an advanced code completion provider, which is built on top of the Elixir Sense library. This code completion provider uses two main mechanisms to provide suggestions to the user.
The first mechanism is reflection, which involves getting information about compiled modules from the Erlang and Elixir APIs. This mechanism provides precise results, but it is not well suited for on-demand completion of symbols from the currently edited file. The compiled version of the code may be outdated or the file may not even compile, which can lead to inaccurate results.
The second mechanism used by the code completion provider is AST analysis of the current text buffer. This mechanism helps in cases where reflection is not accurate enough, such as when completing symbols from the currently edited file. However, it also has its limitations. Due to the metaprogramming-heavy nature of Elixir, it is infeasible to be 100% accurate with AST analysis.
The completions include:
- keywords
- special form snippets
- functions
- macros
- modules
- variables
- sigils
- struct fields (only if the struct type is explicitly stated or can be inferred from the variable binding)
- atom map keys (if map keys can be inferred from variable binding)
- attributes
- binary modifiers
- types (in typespecs)
- behaviour callbacks (inside the body of implementing module)
- protocol functions (inside the body of implementing module)
- keys in keyword functions arguments (if defined in spec)
- function returns (if defined in spec)
With Dialyzer integration enabled ElixirLS will build an index of symbols (modules, functions, types and callbacks). The symbols are taken from the current workspace, all dependencies and stdlib (Elixir and erlang). This feature enables quick navigation to symbol definitions.
Below is a list configuration options supported by ElixirLS language server. Please refer to your editor's documentation on how to configure language servers.
- elixirLS.autoBuild
- Trigger ElixirLS build when code is saved
- elixirLS.dialyzerEnabled
- Run ElixirLS's rapid Dialyzer when code is saved
- elixirLS.dialyzerWarnOpts
- Dialyzer options to enable or disable warnings. See Dialyzer's documentation for options. Note that the "race_conditions" option is unsupported
- elixirLS.dialyzerFormat
- Formatter to use for Dialyzer warnings
- elixirLS.envVariables
- Environment variables to use for compilation
- elixirLS.mixEnv
- Mix environment to use for compilation
- elixirLS.mixTarget
- Mix target to use for compilation
- elixirLS.projectDir
- Subdirectory containing Mix project if not in the project root
- elixirLS.fetchDeps
- Automatically fetch project dependencies when compiling
- elixirLS.suggestSpecs
- Suggest @spec annotations inline using Dialyzer's inferred success typings (Requires Dialyzer)
- elixirLS.trace.server
- Traces the communication between VS Code and the Elixir language server.
- elixirLS.autoInsertRequiredAlias
- Enable auto-insert required alias. By default, it's true, which means enabled.
- elixirLS.signatureAfterComplete
- Show signature help after confirming autocomplete
- elixirLS.enableTestLenses
- Show code lenses to run tests in terminal
- elixirLS.additionalWatchedExtensions
- Additional file types capable of triggering a build on change
- elixirLS.languageServerOverridePath
- Absolute path to alternative ElixirLS release that will override packaged release.
Below is a list of configuration options supported by ElixirLS Debugger. Configuration options can be supplied via debugger launch configuration. Please refer to your editor's documentation on how to configure debugger adapters.
- startApps
- Run `mix app.start` before launching the debugger. Some tasks (such as Phoenix tests) expect apps to already be running before the test files are required
- task
- Mix task to run with debugger. Defaults to task set under `:default_task` key in mixfile
- taskArgs
- A list of arguments to mix task
- debugAutoInterpretAllModules
- Auto interpret all modules from project build path. Defaults to `true`.
- env
- An object with environment variables to set. Object keys specify environment variables, values should be strings
- stackTraceMode
- Debugger stacktrace mode. Allowed values: `all`, `no_tail`, or `false`.
- requireFiles
- A list of additional files that should be required and interpreted. Useful especially for debugging tests
- debugInterpretModulesPatterns
- A list of globs specifying modules that should be interpreted
- debugExpressionTimeoutMs
- Expression evaluator timeout in milliseconds. Defaults to 10 000
- projectDir
- An absolute path to the directory where `mix.exs` is located. In VSCode `${workspaceRoot}` can be used
- excludeModules
- A list of modules that should not be interpreted
Basic troubleshooting steps:
- Restart ElixirLS with a custom command
restart
- Run
mix clean
ormix clean --deps
in ElixirLS with custom commandmixClean
- Restart your editor (which will restart ElixirLS)
- After stopping your editor, remove the entire
.elixir_ls
directory, then restart your editor- NOTE: This will cause you to have to re-run the entire dialyzer build
You may need to set elixirLS.mixEnv
, elixirLS.mixTarget
and elixirLS.projectDir
if your project requires it. By default ElixirLS compiles code with MIX_ENV=test
, MIX_TARGET=host
and assumes that mix.exs
is located in the workspace root directory.
If you get an error like the following immediately on startup:
[Warn - 1:56:04 PM] ** (exit) exited in: GenServer.call(ElixirLS.LanguageServer.JsonRpc, {:packet, %{...snip...}}, 5000)
** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
and you installed Elixir and Erlang from the Erlang Solutions repository, you may not have a full installation of erlang. This can be solved with sudo apt-get install esl-erlang
. Originally reported in #208.
On fedora if you only install the elixir package you will not have a full erlang installation, this can be fixed by running sudo dnf install erlang
(reported in #231)
If you are using Emacs with lsp-mode there's a possibility that you have set the
wrong directory as the project root (especially if that directory does not have
a mix.exs
file). To fix that you should remove the project and re-initialize:
elixir-lsp#364 (comment)
.exs
files don't return compilation errors- "Fetching n dependencies" sometimes get stuck (remove the
.elixir_ls
directory to fix) - "Go to definition" does not work within the
scope
of a Phoenix router - On first launch dialyzer will cause high CPU usage for a considerable time
- Dialyzer does not pick up changes involving remote types (elixir-lsp#502)
In order to build a release use the following commands.
mix deps.get
MIX_ENV=prod mix compile
MIX_ENV=prod mix elixir_ls.release -o <release_dir>
This builds the language server and debugger as a set of .ez
archives and creates .sh
and .bat
scripts to launch them.
If you're packaging these archives in an IDE plugin, make sure to build using the minimum supported OTP version for the best backwards-compatibility. Alternatively, you can use a precompiled release.
This section provides additional information on how to set up the ElixirLS locally.
When launching ElixirLS from an IDE that is itself launched from a graphical shell, the environment may not be complete enough to find or run the correct Elixir/OTP version. To address this on unix, the ElixirLS wrapper scripts try to configure ASDF (a version manager for Elixir and other languages), but that may not always be what is needed.
To ensure that the correct environment is set up, you can create a setup script at $XDG_CONFIG_HOME/elixir_ls/setup.sh
(for Unix-based systems) or %APPDATA%\elixir_ls\setup.bat
(for Windows).
In the setup script the environment variable ELS_MODE
available and set to either debugger
or language_server
to help you decide what to do.
Note: The setup script must not read from stdin
and write to stdout
. On unix/linux/macOS
this might be accomplished by adding >/dev/null
at the end of any line that produces
output, and for a windows batch script you will want @echo off
at the top and >nul
.
ELS_INSTALL_PREFIX
: The folder where the language server got installed to. If set, it makes maintaining multiple versions/instances on the same host much easier. If not set or empty, a heuristic will be used to discover the install location.
ElixirLS isn't the first frontend-independent server for Elixir language support. The original was Alchemist Server, which powers the Alchemist plugin for Emacs. Another project, Elixir Sense, builds upon Alchemist and powers the Elixir plugin for Atom as well as another VS Code plugin, VSCode Elixir. ElixirLS uses Elixir Sense for several code insight features. Credit for those projects goes to their respective authors.
ElixirLS source code is released under Apache License 2.0.
See LICENSE for more information.