mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
..
This commit is contained in:
parent
5d25f5b915
commit
e06f6bec6a
2 changed files with 4 additions and 3 deletions
|
|
@ -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.
|
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.
|
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 @@ impl<'a> Executor<'a> {
|
||||||
macro_rules! on {
|
macro_rules! on {
|
||||||
($name:ident) => {
|
($name:ident) => {
|
||||||
if cmd.name == stringify!($name) {
|
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!(plugin_do);
|
||||||
on!(update_progress);
|
on!(update_progress);
|
||||||
on!(deprecate);
|
on!(deprecate);
|
||||||
|
on!(quit);
|
||||||
|
|
||||||
match &*cmd.name {
|
match &*cmd.name {
|
||||||
"resize" => act!(app:resize, cx, crate::Root::reflow as fn(_) -> _),
|
"resize" => act!(app:resize, cx, crate::Root::reflow as fn(_) -> _),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue