1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

plugins/chadtree: account for initially wrong declaration for the 'ignore.*' options

This commit is contained in:
Gaetan Lepage 2025-09-24 14:56:37 +02:00 committed by Gaétan Lepage
parent ffc4d73814
commit ce7fddd1ec
2 changed files with 48 additions and 25 deletions

View file

@ -38,21 +38,44 @@
"options" "options"
"versionControl" "versionControl"
] ]
[
"options" # IGNORE
"ignore" # `ignore.*` was wrongly declared as an `options` suboption.
"nameExact" # The following declares correct renamed warnings that account for this prior mistake
] # Initially reported in https://github.com/nix-community/nixvim/pull/3705
[ {
"options" old = [
"ignore" "options"
"nameGlob" "ignore"
] "nameExact"
[ ];
"options" new = [
"ignore" "ignore"
"pathGlob" "name_exact"
] ];
}
{
old = [
"options"
"ignore"
"nameGlob"
];
new = [
"ignore"
"name_glob"
];
}
{
old = [
"options"
"ignore"
"pathGlob"
];
new = [
"ignore"
"path_glob"
];
}
# VIEW # VIEW
[ [

View file

@ -44,16 +44,16 @@
session = true; session = true;
show_hidden = false; show_hidden = false;
version_control = true; version_control = true;
ignore = { };
name_exact = [ ignore = {
".DS_Store" name_exact = [
".directory" ".DS_Store"
"thumbs.db" ".directory"
".git" "thumbs.db"
]; ".git"
name_glob = [ ]; ];
path_glob = [ ]; name_glob = [ ];
}; path_glob = [ ];
}; };
view = { view = {
open_direction = "left"; open_direction = "left";