Skip to content

Commit

Permalink
fix: include new plugin behaviour in detection list
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Sep 14, 2024
1 parent 0c98e65 commit 769c058
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/elixir_sense/providers/plugins/module_store.ex
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ defmodule ElixirSense.Providers.Plugins.ModuleStore do
module.module_info(:attributes)
|> Enum.any?(fn
{:behaviour, behaviours} when is_list(behaviours) ->
ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours
ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or
ElixirSense.Providers.Plugin in behaviours

{:is_elixir_sense_plugin, true} ->
true
Expand Down

0 comments on commit 769c058

Please sign in to comment.