From 8788544a0547f04f0faf0ad24105502fddadc882 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Sat, 14 Sep 2024 16:44:43 -0400 Subject: [PATCH] fix: check for proper patterns for persisted module attributes --- lib/elixir_sense/providers/plugins/module_store.ex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/elixir_sense/providers/plugins/module_store.ex b/lib/elixir_sense/providers/plugins/module_store.ex index 932eacc2..5553013e 100644 --- a/lib/elixir_sense/providers/plugins/module_store.ex +++ b/lib/elixir_sense/providers/plugins/module_store.ex @@ -54,11 +54,11 @@ defmodule ElixirSense.Providers.Plugins.ModuleStore do ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or ElixirSense.Providers.Plugin in behaviours - {:is_elixir_sense_plugin, true} -> - true + {:is_elixir_sense_plugin, value} -> + true in List.wrap(value) {:is_elixir_ls_plugin, true} -> - true + true in List.wrap(value) _ -> false