Skip to content

Commit

Permalink
Move providers from elixir_sense (#1068)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
lukaszsamson committed Mar 9, 2024
1 parent cb5315a commit bb31d48
Show file tree
Hide file tree
Showing 90 changed files with 22,653 additions and 43 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.0
0.21.0-dev
2 changes: 1 addition & 1 deletion apps/debug_adapter/lib/debug_adapter/server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ defmodule ElixirLS.DebugAdapter.Server do
metadata = %ElixirSense.Core.Metadata{}

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

%{"targets" => results}
Expand Down
Loading

0 comments on commit bb31d48

Please sign in to comment.