This commit is contained in:
sxyazi 2026-01-29 00:33:33 +08:00
parent 5d25f5b915
commit e06f6bec6a
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View file

@ -18,7 +18,7 @@ I noticed that you did not correctly follow the issue template. Please ensure th
Issues with \`${LABEL_NAME}\` will be marked ready once edited with the proper content, or closed after 2 days of inactivity.
Our maintainers work on Yazi in a personal capacity, this helps them work efficiently, understand your setup quickly, and find a more appropriate solution. Thanks for your understanding!
Our maintainers work on Yazi in their free time, this helps them work efficiently, understand your setup quickly, and find a more appropriate solution. Thanks for your understanding!
`
}
@ -37,7 +37,7 @@ I noticed that you did not correctly follow the issue template. Please ensure th
Issues with \`${LABEL_NAME}\` will be marked ready once edited with the proper content, or closed after 2 days of inactivity.
Our maintainers work on Yazi in a personal capacity, this helps them work efficiently, understand your setup quickly, and find a more appropriate solution. Thanks for your understanding!
Our maintainers work on Yazi in their free time, this helps them work efficiently, understand your setup quickly, and find a more appropriate solution. Thanks for your understanding!
`
}

View file

@ -37,7 +37,7 @@ impl<'a> Executor<'a> {
macro_rules! on {
($name:ident) => {
if cmd.name == stringify!($name) {
return act!(app:$name, cx, cmd)
return act!(app:$name, cx, cmd);
}
};
}
@ -47,6 +47,7 @@ impl<'a> Executor<'a> {
on!(plugin_do);
on!(update_progress);
on!(deprecate);
on!(quit);
match &*cmd.name {
"resize" => act!(app:resize, cx, crate::Root::reflow as fn(_) -> _),