Skip to content

Commit 1397cd2

Browse files
committed
Revert "apply elixir_sense fixes"
This reverts commit e20a3f4.
1 parent c4f2ad5 commit 1397cd2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

apps/language_server/lib/language_server/providers/plugins/module_store.ex

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,13 @@ defmodule ElixirLS.LanguageServer.Plugins.ModuleStore do
5151
module.module_info(:attributes)
5252
|> Enum.any?(fn
5353
{:behaviour, behaviours} when is_list(behaviours) ->
54-
ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or
55-
ElixirSense.Providers.Plugin in behaviours
54+
ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours
5655

57-
{:is_elixir_sense_plugin, value} ->
58-
true in List.wrap(value)
56+
{:is_elixir_sense_plugin, true} ->
57+
true
5958

60-
{:is_elixir_ls_plugin, value} ->
61-
true in List.wrap(value)
59+
{:is_elixir_ls_plugin, true} ->
60+
true
6261

6362
_ ->
6463
false

0 commit comments

Comments
 (0)