We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1ebaad + 572c81c commit 1a23c9cCopy full SHA for 1a23c9c
lib/elixir_sense/providers/plugins/module_store.ex
@@ -51,13 +51,14 @@ defmodule ElixirSense.Providers.Plugins.ModuleStore do
51
module.module_info(:attributes)
52
|> Enum.any?(fn
53
{:behaviour, behaviours} when is_list(behaviours) ->
54
- ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours
+ ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or
55
+ ElixirSense.Providers.Plugin in behaviours
56
- {:is_elixir_sense_plugin, true} ->
57
- true
+ {:is_elixir_sense_plugin, value} ->
58
+ true in List.wrap(value)
59
- {:is_elixir_ls_plugin, true} ->
60
+ {:is_elixir_ls_plugin, value} ->
61
62
63
_ ->
64
false
0 commit comments