File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
apps/language_server/lib/language_server/providers/plugins Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,13 @@ 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 or
55
- ElixirSense.Providers.Plugin in behaviours
54
+ ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours
56
55
57
- { :is_elixir_sense_plugin , value } ->
58
- true in List . wrap ( value )
56
+ { :is_elixir_sense_plugin , true } ->
57
+ true
59
58
60
- { :is_elixir_ls_plugin , value } ->
61
- true in List . wrap ( value )
59
+ { :is_elixir_ls_plugin , true } ->
60
+ true
62
61
63
62
_ ->
64
63
false
You can’t perform that action at this time.
0 commit comments