nix-community.nixvim/plugins/by-name/lspkind/deprecations.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
288 B
Nix
Raw Normal View History

lib: {
deprecateExtraOptions = true;
optionsRenamedToSettings =
let
mkOptionPaths = map (lib.splitString ".");
in
mkOptionPaths [
"mode"
"preset"
"maxWidth"
"symbolMap"
"cmp.maxWidth"
"cmp.ellipsisChar"
"cmp.menu"
];
}