mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
feat: allow custom exit code with quit --code (#2609)
Co-authored-by: Nicholas Schwab <git@nicholas-schwab.de> Co-authored-by: sxyazi <sxyazi@gmail.com>
This commit is contained in:
parent
bef481057a
commit
af92b92da8
8 changed files with 52 additions and 42 deletions
|
|
@ -3,14 +3,10 @@ use yazi_shared::event::CmdCow;
|
||||||
use crate::{mgr::{Mgr, commands::quit}, tasks::Tasks};
|
use crate::{mgr::{Mgr, commands::quit}, tasks::Tasks};
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
struct Opt {
|
struct Opt(quit::Opt);
|
||||||
no_cwd_file: bool,
|
|
||||||
}
|
|
||||||
impl From<CmdCow> for Opt {
|
impl From<CmdCow> for Opt {
|
||||||
fn from(c: CmdCow) -> Self { Self { no_cwd_file: c.bool("no-cwd-file") } }
|
fn from(c: CmdCow) -> Self { Self(c.into()) }
|
||||||
}
|
|
||||||
impl From<Opt> for quit::Opt {
|
|
||||||
fn from(value: Opt) -> Self { Self { no_cwd_file: value.no_cwd_file } }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Mgr {
|
impl Mgr {
|
||||||
|
|
@ -19,6 +15,6 @@ impl Mgr {
|
||||||
if self.tabs.len() > 1 {
|
if self.tabs.len() > 1 {
|
||||||
return self.tabs.close(self.tabs.cursor);
|
return self.tabs.close(self.tabs.cursor);
|
||||||
}
|
}
|
||||||
self.quit(opt, tasks);
|
self.quit(opt.0, tasks);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,18 @@
|
||||||
use std::{borrow::Cow, ffi::OsString};
|
use std::borrow::Cow;
|
||||||
|
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
use yazi_boot::ARGS;
|
|
||||||
use yazi_config::{YAZI, popup::PickCfg};
|
use yazi_config::{YAZI, popup::PickCfg};
|
||||||
use yazi_fs::File;
|
use yazi_fs::File;
|
||||||
use yazi_macro::emit;
|
|
||||||
use yazi_plugin::isolate;
|
use yazi_plugin::isolate;
|
||||||
use yazi_proxy::{MgrProxy, PickProxy, TasksProxy, options::OpenDoOpt};
|
use yazi_proxy::{MgrProxy, PickProxy, TasksProxy, options::OpenDoOpt};
|
||||||
use yazi_shared::{MIME_DIR, event::{CmdCow, EventQuit}, url::Url};
|
use yazi_shared::{MIME_DIR, event::CmdCow, url::Url};
|
||||||
|
|
||||||
use crate::{mgr::Mgr, tab::Folder, tasks::Tasks};
|
use crate::{mgr::Mgr, tab::Folder, tasks::Tasks};
|
||||||
|
|
||||||
#[derive(Clone, Copy)]
|
#[derive(Clone, Copy)]
|
||||||
struct Opt {
|
pub(super) struct Opt {
|
||||||
interactive: bool,
|
pub(super) interactive: bool,
|
||||||
hovered: bool,
|
pub(super) hovered: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<CmdCow> for Opt {
|
impl From<CmdCow> for Opt {
|
||||||
|
|
@ -120,19 +118,4 @@ impl Mgr {
|
||||||
|| find(self.hovered_folder())
|
|| find(self.hovered_folder())
|
||||||
|| find(self.active().history.get(&p))
|
|| find(self.active().history.get(&p))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn quit_with_selected(opt: Opt, selected: &[&Url]) -> bool {
|
|
||||||
if opt.interactive || ARGS.chooser_file.is_none() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
let paths = selected.iter().fold(OsString::new(), |mut s, &u| {
|
|
||||||
s.push(u.as_os_str());
|
|
||||||
s.push("\n");
|
|
||||||
s
|
|
||||||
});
|
|
||||||
|
|
||||||
emit!(Quit(EventQuit { selected: Some(paths), ..Default::default() }));
|
|
||||||
true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,39 @@
|
||||||
use std::time::Duration;
|
use std::{ffi::OsString, time::Duration};
|
||||||
|
|
||||||
use tokio::{select, time};
|
use tokio::{select, time};
|
||||||
|
use yazi_boot::ARGS;
|
||||||
use yazi_config::popup::ConfirmCfg;
|
use yazi_config::popup::ConfirmCfg;
|
||||||
use yazi_macro::emit;
|
use yazi_macro::emit;
|
||||||
use yazi_proxy::ConfirmProxy;
|
use yazi_proxy::ConfirmProxy;
|
||||||
use yazi_shared::event::{CmdCow, EventQuit};
|
use yazi_shared::{event::{CmdCow, Data, EventQuit}, url::Url};
|
||||||
|
|
||||||
use crate::{mgr::Mgr, tasks::Tasks};
|
use crate::{mgr::Mgr, tasks::Tasks};
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub(super) struct Opt {
|
pub(super) struct Opt {
|
||||||
|
pub(super) code: i32,
|
||||||
pub(super) no_cwd_file: bool,
|
pub(super) no_cwd_file: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<CmdCow> for Opt {
|
impl From<CmdCow> for Opt {
|
||||||
fn from(c: CmdCow) -> Self { Self { no_cwd_file: c.bool("no-cwd-file") } }
|
fn from(c: CmdCow) -> Self {
|
||||||
|
Self {
|
||||||
|
code: c.get("code").and_then(Data::as_i32).unwrap_or_default(),
|
||||||
|
no_cwd_file: c.bool("no-cwd-file"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<Opt> for EventQuit {
|
||||||
|
fn from(value: Opt) -> Self {
|
||||||
|
EventQuit { code: value.code, no_cwd_file: value.no_cwd_file, ..Default::default() }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Mgr {
|
impl Mgr {
|
||||||
#[yazi_codegen::command]
|
#[yazi_codegen::command]
|
||||||
pub fn quit(&self, opt: Opt, tasks: &Tasks) {
|
pub fn quit(&self, opt: Opt, tasks: &Tasks) {
|
||||||
let opt = EventQuit { no_cwd_file: opt.no_cwd_file, ..Default::default() };
|
let event = opt.into();
|
||||||
|
|
||||||
let ongoing = tasks.ongoing().clone();
|
let ongoing = tasks.ongoing().clone();
|
||||||
let (left, left_names) = {
|
let (left, left_names) = {
|
||||||
|
|
@ -28,7 +42,7 @@ impl Mgr {
|
||||||
};
|
};
|
||||||
|
|
||||||
if left == 0 {
|
if left == 0 {
|
||||||
emit!(Quit(opt));
|
emit!(Quit(event));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -41,13 +55,13 @@ impl Mgr {
|
||||||
i += 1;
|
i += 1;
|
||||||
if i > 40 { break }
|
if i > 40 { break }
|
||||||
else if ongoing.lock().is_empty() {
|
else if ongoing.lock().is_empty() {
|
||||||
emit!(Quit(opt));
|
emit!(Quit(event));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
b = &mut rx => {
|
b = &mut rx => {
|
||||||
if b.unwrap_or(false) {
|
if b.unwrap_or(false) {
|
||||||
emit!(Quit(opt));
|
emit!(Quit(event));
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -55,8 +69,23 @@ impl Mgr {
|
||||||
}
|
}
|
||||||
|
|
||||||
if rx.await.unwrap_or(false) {
|
if rx.await.unwrap_or(false) {
|
||||||
emit!(Quit(opt));
|
emit!(Quit(event));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub(super) fn quit_with_selected(opt: super::open::Opt, selected: &[&Url]) -> bool {
|
||||||
|
if opt.interactive || ARGS.chooser_file.is_none() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let paths = selected.iter().fold(OsString::new(), |mut s, &u| {
|
||||||
|
s.push(u.as_os_str());
|
||||||
|
s.push("\n");
|
||||||
|
s
|
||||||
|
});
|
||||||
|
|
||||||
|
emit!(Quit(EventQuit { selected: Some(paths), ..Default::default() }));
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ impl App {
|
||||||
self.selected_to_file(selected);
|
self.selected_to_file(selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
Term::goodbye(|| false);
|
Term::goodbye(|| opt.code);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn cwd_to_file(&self) {
|
fn cwd_to_file(&self) {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ impl Panic {
|
||||||
std::panic::set_hook(Box::new(move |info| {
|
std::panic::set_hook(Box::new(move |info| {
|
||||||
Term::goodbye(|| {
|
Term::goodbye(|| {
|
||||||
hook(info);
|
hook(info);
|
||||||
true
|
1
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@ impl Term {
|
||||||
Ok(disable_raw_mode()?)
|
Ok(disable_raw_mode()?)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn goodbye(f: impl FnOnce() -> bool) -> ! {
|
pub(super) fn goodbye(f: impl FnOnce() -> i32) -> ! {
|
||||||
if CSI_U.swap(false, Ordering::Relaxed) {
|
if CSI_U.swap(false, Ordering::Relaxed) {
|
||||||
PopKeyboardEnhancementFlags.write_ansi(&mut TTY.writer()).ok();
|
PopKeyboardEnhancementFlags.write_ansi(&mut TTY.writer()).ok();
|
||||||
}
|
}
|
||||||
|
|
@ -111,7 +111,7 @@ impl Term {
|
||||||
|
|
||||||
disable_raw_mode().ok();
|
disable_raw_mode().ok();
|
||||||
|
|
||||||
std::process::exit(f() as i32);
|
std::process::exit(f());
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn draw(&mut self, f: impl FnOnce(&mut Frame)) -> io::Result<CompletedFrame> {
|
pub(super) fn draw(&mut self, f: impl FnOnce(&mut Frame)) -> io::Result<CompletedFrame> {
|
||||||
|
|
|
||||||
|
|
@ -182,6 +182,7 @@ macro_rules! impl_number_as {
|
||||||
impl_integer_as!(usize, as_usize);
|
impl_integer_as!(usize, as_usize);
|
||||||
impl_integer_as!(isize, as_isize);
|
impl_integer_as!(isize, as_isize);
|
||||||
impl_integer_as!(i16, as_i16);
|
impl_integer_as!(i16, as_i16);
|
||||||
|
impl_integer_as!(i32, as_i32);
|
||||||
|
|
||||||
impl_number_as!(f64, as_f64);
|
impl_number_as!(f64, as_f64);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ pub enum Event {
|
||||||
|
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct EventQuit {
|
pub struct EventQuit {
|
||||||
|
pub code: i32,
|
||||||
pub no_cwd_file: bool,
|
pub no_cwd_file: bool,
|
||||||
pub selected: Option<OsString>,
|
pub selected: Option<OsString>,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue