File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
apps/language_server/lib/language_server/providers/plugins Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -51,13 +51,14 @@ defmodule ElixirLS.LanguageServer.Plugins.ModuleStore do
51
51
module . module_info ( :attributes )
52
52
|> Enum . any? ( fn
53
53
{ :behaviour , behaviours } when is_list ( behaviours ) ->
54
- ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours
54
+ ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or
55
+ ElixirSense.Providers.Plugin in behaviours
55
56
56
- { :is_elixir_sense_plugin , true } ->
57
- true
57
+ { :is_elixir_sense_plugin , value } ->
58
+ true in List . wrap ( value )
58
59
59
- { :is_elixir_ls_plugin , true } ->
60
- true
60
+ { :is_elixir_ls_plugin , value } ->
61
+ true in List . wrap ( value )
61
62
62
63
_ ->
63
64
false
You can’t perform that action at this time.
0 commit comments