From f80eb6eda11f830b4b81b9f2df74518355ba9568 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sat, 11 Jan 2025 09:57:15 +0800 Subject: [PATCH] .. --- yazi-core/src/manager/commands/quit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-core/src/manager/commands/quit.rs b/yazi-core/src/manager/commands/quit.rs index fe1e517b..d1ea9288 100644 --- a/yazi-core/src/manager/commands/quit.rs +++ b/yazi-core/src/manager/commands/quit.rs @@ -10,7 +10,7 @@ use crate::{manager::Manager, tasks::Tasks}; #[derive(Default)] pub(super) struct Opt { - pub no_cwd_file: bool, + pub(super) no_cwd_file: bool, } impl From for Opt { fn from(c: CmdCow) -> Self { Self { no_cwd_file: c.bool("no-cwd-file") } }