mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-01 14:41:05 +01:00
plugins/efmls-configs: avoid reading HTML & JSON aliases
f0764db721 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.
This commit is contained in:
parent
9d6a7608df
commit
b831550ec8
1 changed files with 3 additions and 0 deletions
|
|
@ -182,7 +182,10 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
(
|
(
|
||||||
builtins.removeAttrs cfg.setup [
|
builtins.removeAttrs cfg.setup [
|
||||||
"all"
|
"all"
|
||||||
|
# Rename aliases added 2025-06-25 in https://github.com/nix-community/nixvim/pull/3503
|
||||||
"warnings"
|
"warnings"
|
||||||
|
"HTML"
|
||||||
|
"JSON"
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue