mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
refactor: reorder payload types
Co-authored-by: 三咲雅 · Misaki Masa <sxyazi@gmail.com>
This commit is contained in:
parent
0bc5529362
commit
adeaf0d212
1 changed files with 1 additions and 1 deletions
|
|
@ -88,9 +88,9 @@ impl Display for Payload<'_> {
|
||||||
Body::Cd(b) => serde_json::to_string(b),
|
Body::Cd(b) => serde_json::to_string(b),
|
||||||
Body::Hover(b) => serde_json::to_string(b),
|
Body::Hover(b) => serde_json::to_string(b),
|
||||||
Body::Rename(b) => serde_json::to_string(b),
|
Body::Rename(b) => serde_json::to_string(b),
|
||||||
Body::Move(b) => serde_json::to_string(b),
|
|
||||||
Body::Bulk(b) => serde_json::to_string(b),
|
Body::Bulk(b) => serde_json::to_string(b),
|
||||||
Body::Yank(b) => serde_json::to_string(b),
|
Body::Yank(b) => serde_json::to_string(b),
|
||||||
|
Body::Move(b) => serde_json::to_string(b),
|
||||||
Body::Custom(b) => serde_json::to_string(b),
|
Body::Custom(b) => serde_json::to_string(b),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue