From f313bca1d12ff25c9571006af99568bd8c76d078 Mon Sep 17 00:00:00 2001 From: YiNN Date: Sun, 8 Dec 2024 16:08:33 +0800 Subject: [PATCH] fix: fix fish arg (#41) --- src/history.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/history.rs b/src/history.rs index 0b907d5..e35db57 100644 --- a/src/history.rs +++ b/src/history.rs @@ -48,7 +48,7 @@ impl HistoryProvider { HistoryProvider::Fish => { let output = Command::new("fish") .arg("-c") - .arg("history -show-time='%s;'") + .arg("history --show-time='%s;'") .output()?; Ok(Box::new(Cursor::new(output.stdout))) }