From e06f6bec6a70e975304df73498ecf4f97f7951d9 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Thu, 29 Jan 2026 00:33:33 +0800 Subject: [PATCH] .. --- scripts/validate-form/main.js | 4 ++-- yazi-fm/src/executor.rs | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/validate-form/main.js b/scripts/validate-form/main.js index e9f8d1f2..5b231099 100644 --- a/scripts/validate-form/main.js +++ b/scripts/validate-form/main.js @@ -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! ` } diff --git a/yazi-fm/src/executor.rs b/yazi-fm/src/executor.rs index 574aaaba..123f40f4 100644 --- a/yazi-fm/src/executor.rs +++ b/yazi-fm/src/executor.rs @@ -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(_) -> _),