Skip to content

Commit

Permalink
fix: fix fish arg (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
YiNNx authored Dec 8, 2024
1 parent 1b5fd20 commit f313bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/history.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
}
Expand Down

0 comments on commit f313bca

Please sign in to comment.