From 684cad64bfe36dc98578cd2d7525402c6c8ea414 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Sat, 29 Nov 2025 00:55:46 +0000 Subject: [PATCH] plugins/efmls-configs: avoid reading HTML & JSON aliases f0764db7212003520341ac10ddcee50e9c458a6f added rename aliases for the HTML and JSON options, which print a trace when evaluated: trace: Obsolete option `HTML' is used. It was renamed to `html'. trace: Obsolete option `JSON' is used. It was renamed to `json'. These were correctly removed when introspecting enabled tools, however they were not removed when constructing the "setup options" to serialise as a lua table. (cherry picked from commit b831550ec84f23025a07970865a919f575c16678) --- plugins/by-name/efmls-configs/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/by-name/efmls-configs/default.nix b/plugins/by-name/efmls-configs/default.nix index bf7c2f4a..7973696e 100644 --- a/plugins/by-name/efmls-configs/default.nix +++ b/plugins/by-name/efmls-configs/default.nix @@ -182,7 +182,10 @@ lib.nixvim.plugins.mkNeovimPlugin { ( builtins.removeAttrs cfg.setup [ "all" + # Rename aliases added 2025-06-25 in https://github.com/nix-community/nixvim/pull/3503 "warnings" + "HTML" + "JSON" ] ) )