mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/chadtree: account for initially wrong declaration for the 'ignore.*' options
This commit is contained in:
parent
ffc4d73814
commit
ce7fddd1ec
2 changed files with 48 additions and 25 deletions
|
|
@ -38,21 +38,44 @@
|
||||||
"options"
|
"options"
|
||||||
"versionControl"
|
"versionControl"
|
||||||
]
|
]
|
||||||
[
|
|
||||||
|
# IGNORE
|
||||||
|
# `ignore.*` was wrongly declared as an `options` suboption.
|
||||||
|
# The following declares correct renamed warnings that account for this prior mistake
|
||||||
|
# Initially reported in https://github.com/nix-community/nixvim/pull/3705
|
||||||
|
{
|
||||||
|
old = [
|
||||||
"options"
|
"options"
|
||||||
"ignore"
|
"ignore"
|
||||||
"nameExact"
|
"nameExact"
|
||||||
]
|
];
|
||||||
[
|
new = [
|
||||||
|
"ignore"
|
||||||
|
"name_exact"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
old = [
|
||||||
"options"
|
"options"
|
||||||
"ignore"
|
"ignore"
|
||||||
"nameGlob"
|
"nameGlob"
|
||||||
]
|
];
|
||||||
[
|
new = [
|
||||||
|
"ignore"
|
||||||
|
"name_glob"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
old = [
|
||||||
"options"
|
"options"
|
||||||
"ignore"
|
"ignore"
|
||||||
"pathGlob"
|
"pathGlob"
|
||||||
]
|
];
|
||||||
|
new = [
|
||||||
|
"ignore"
|
||||||
|
"path_glob"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
# VIEW
|
# VIEW
|
||||||
[
|
[
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@
|
||||||
session = true;
|
session = true;
|
||||||
show_hidden = false;
|
show_hidden = false;
|
||||||
version_control = true;
|
version_control = true;
|
||||||
|
};
|
||||||
ignore = {
|
ignore = {
|
||||||
name_exact = [
|
name_exact = [
|
||||||
".DS_Store"
|
".DS_Store"
|
||||||
|
|
@ -54,7 +55,6 @@
|
||||||
name_glob = [ ];
|
name_glob = [ ];
|
||||||
path_glob = [ ];
|
path_glob = [ ];
|
||||||
};
|
};
|
||||||
};
|
|
||||||
view = {
|
view = {
|
||||||
open_direction = "left";
|
open_direction = "left";
|
||||||
sort_by = [
|
sort_by = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue