Skip to content

Commit e91336d

Browse files
committed
fix doc issues
1 parent 69629f9 commit e91336d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
- Elixir 1.15 reached end of life and is no longer supported. Consider updating to 1.16+
4747
- OTP versions below 26 are no longer supported. Consider updating to OTP 26+
48-
- Legacy dialyzer support dropped
48+
- Legacy dialyzer support dropped — OTP's incremental Dialyzer is now the only engine, so the `elixirLS.incrementalDialyzer` setting has been removed
4949

5050
### v0.30.0: 17 November 2025
5151

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ ElixirLS provides debug adapter support adhering to the [Debug Adapter Protocol]
160160

161161
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.
162162

163-
Please note that there is currently a limit of 100 breakpoints.
163+
Please note that there is currently a limit of 100 conditional breakpoints (breakpoints with a condition, hit count, or log message). Plain breakpoints are not subject to this limit.
164164

165165
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:
166166

@@ -498,7 +498,7 @@ Below is a list of configuration options supported by the ElixirLS language serv
498498
<dl>
499499
<dt>elixirLS.autoBuild</dt><dd>Trigger ElixirLS build when code is saved</dd>
500500
<dt>elixirLS.dialyzerEnabled</dt><dd>Run ElixirLS's rapid Dialyzer when code is saved</dd>
501-
<dt>elixirLS.dialyzerWarnOpts</dt><dd>Dialyzer options to enable or disable warnings - See Dialyzer's documentation for options. Note that the <code>race_conditions</code> option is unsupported.</dd>
501+
<dt>elixirLS.dialyzerWarnOpts</dt><dd>Dialyzer options to enable or disable warnings - See Dialyzer's documentation for options.</dd>
502502
<dt>elixirLS.dialyzerFormat</dt><dd>Formatter to use for Dialyzer warnings</dd>
503503
<dt>elixirLS.envVariables</dt><dd>Environment variables to use for compilation</dd>
504504
<dt>elixirLS.mixEnv</dt><dd>Mix environment to use for compilation</dd>
@@ -514,7 +514,7 @@ Below is a list of configuration options supported by the ElixirLS language serv
514514
<dt>elixirLS.languageServerOverridePath</dt><dd>Absolute path to an alternative ElixirLS release that will override the packaged release</dd>
515515
<dt>elixirLS.stdlibSrcDir</dt><dd>Path to Elixir's std lib source code. See [here](https://github.com/elixir-lsp/elixir_sense/pull/277) for more info</dd>
516516
<dt>elixirLS.dotFormatter</dt><dd>Path to a custom <code>.formatter.exs</code> file used when formatting documents</dd>
517-
<dt>elixirLS.mcpEnabled</dt><dd>Enable or disable the MCP (Model Context Protocol) server - Defaults to <code>true</code></dd>
517+
<dt>elixirLS.mcpEnabled</dt><dd>Enable or disable the MCP (Model Context Protocol) server - Defaults to <code>false</code></dd>
518518
<dt>elixirLS.mcpPort</dt><dd>Set a specific TCP port for the MCP server - If not set, uses <code>3789 + hash(workspace_path)</code> for predictable port assignment per workspace</dd>
519519
</dl>
520520

docs/getting-started/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Getting Started
22

3-
The Erlang LS language server works with all text editors and IDEs
3+
The ElixirLS language server works with all text editors and IDEs
44
which adhere to the _LSP_ protocol. The list of supported editors
55
include _Emacs_, _Vim_, _VS Code_, _Sublime Text 3_ and more.
66

77
These pages contain all the information needed to configure your
8-
favourite text editor or IDE to use ErlangLS. You will also find
8+
favourite text editor or IDE to use ElixirLS. You will also find
99
instructions on how to configure the server to recognize the structure
1010
of your projects and to troubleshoot your installation when things do
1111
not work as expected.

0 commit comments

Comments
 (0)