Yazi: Style fixes.
This commit is contained in:
parent
a2ca53a4fc
commit
1da52e218e
|
@ -8,6 +8,7 @@
|
||||||
prepend_keymap = [
|
prepend_keymap = [
|
||||||
{ on = "<Enter>"; desc = "Spawn shell here"; run = ''shell "SHELL_NAME=yazi $SHELL" --block --confirm''; }
|
{ on = "<Enter>"; desc = "Spawn shell here"; run = ''shell "SHELL_NAME=yazi $SHELL" --block --confirm''; }
|
||||||
{ on = "<Tab>"; desc = "New tab"; run = "tab_create --current"; }
|
{ on = "<Tab>"; desc = "New tab"; run = "tab_create --current"; }
|
||||||
|
{ on = "?"; desc = "Show help"; run = "help"; }
|
||||||
{ on = "D"; desc = "Force delete"; run = "remove --permanently --force"; }
|
{ on = "D"; desc = "Force delete"; run = "remove --permanently --force"; }
|
||||||
{ on = "E"; desc = "Move to next tab"; run = "tab_swap 1 --relative"; }
|
{ on = "E"; desc = "Move to next tab"; run = "tab_swap 1 --relative"; }
|
||||||
{ on = "O"; desc = "Open default"; run = "open"; }
|
{ on = "O"; desc = "Open default"; run = "open"; }
|
||||||
|
|
|
@ -50,10 +50,15 @@ in {
|
||||||
tab_active = mkCounter color.selection;
|
tab_active = mkCounter color.selection;
|
||||||
};
|
};
|
||||||
select = {
|
select = {
|
||||||
border = borderLight;
|
active = select;
|
||||||
|
border = borderLight;
|
||||||
|
inactive = text;
|
||||||
};
|
};
|
||||||
input = {
|
input = {
|
||||||
border = borderLight;
|
border = borderLight; # ISSUE: Currently broken, stays blue.
|
||||||
|
selected = select;
|
||||||
|
title = text;
|
||||||
|
value = text;
|
||||||
};
|
};
|
||||||
completion = {
|
completion = {
|
||||||
active = hover;
|
active = hover;
|
||||||
|
@ -61,7 +66,9 @@ in {
|
||||||
inactive = text;
|
inactive = text;
|
||||||
};
|
};
|
||||||
tasks = {
|
tasks = {
|
||||||
border = borderLight;
|
border = borderLight;
|
||||||
|
hovered = hover;
|
||||||
|
title = text;
|
||||||
};
|
};
|
||||||
which = {
|
which = {
|
||||||
cand = text;
|
cand = text;
|
||||||
|
@ -72,6 +79,13 @@ in {
|
||||||
separator = " - ";
|
separator = " - ";
|
||||||
separator_style = text;
|
separator_style = text;
|
||||||
};
|
};
|
||||||
|
help = {
|
||||||
|
desc = text;
|
||||||
|
footer = text;
|
||||||
|
hovered = hover;
|
||||||
|
on = text;
|
||||||
|
run = text;
|
||||||
|
};
|
||||||
confirm = {
|
confirm = {
|
||||||
border = borderLight;
|
border = borderLight;
|
||||||
title = borderLight;
|
title = borderLight;
|
||||||
|
|
Loading…
Reference in a new issue