From 0d454d03373ff95d2306c5987f753f777bd968e3 Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Mon, 6 Jan 2025 13:43:26 +0100 Subject: [PATCH] fix(cable): zsh-history and bash-history cable channels now point to default histfiles locations --- cable/unix-channels.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cable/unix-channels.toml b/cable/unix-channels.toml index 572e464..10b0bae 100644 --- a/cable/unix-channels.toml +++ b/cable/unix-channels.toml @@ -35,11 +35,11 @@ preview_command = ":files:" # Shell history [[cable_channel]] name = "zsh-history" -source_command = "sed '1!G;h;$!d' $HISTFILE | cut -d\";\" -f 2-" +source_command = "sed '1!G;h;$!d' $HOME/.zsh_history | cut -d\";\" -f 2-" [[cable_channel]] name = "bash-history" -source_command = "sed '1!G;h;$!d' $HISTFILE" +source_command = "sed '1!G;h;$!d' $HOME/.bash_history" [[cable_channel]] name = "fish-history"