Skip to content

Commit bb31d48

Browse files
authored
Move providers from elixir_sense (#1068)
* hover provider moved over from elixir_sense * definition provider moved over * implementation provider moved over * location moved over * references provider moved over * signature moved over * completions provider moved over * move more tests * expand macro moved over * fix some tests * fix some tests * make order predictable * fix some tests on 1.12 * format
1 parent cb5315a commit bb31d48

File tree

90 files changed

+22653
-43
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+22653
-43
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.20.0
1+
0.21.0-dev

apps/debug_adapter/lib/debug_adapter/server.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ defmodule ElixirLS.DebugAdapter.Server do
13151315
metadata = %ElixirSense.Core.Metadata{}
13161316

13171317
results =
1318-
ElixirSense.Providers.Suggestion.Complete.complete(prefix, env, metadata, {1, 1})
1318+
ElixirLS.Utils.CompletionEngine.complete(prefix, env, metadata, {1, 1})
13191319
|> Enum.map(&ElixirLS.DebugAdapter.Completions.map/1)
13201320

13211321
%{"targets" => results}

0 commit comments

Comments
 (0)