summaryrefslogtreecommitdiff
path: root/.config/fish/functions/_fzf_search_history.fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fish/functions/_fzf_search_history.fish')
-rw-r--r--.config/fish/functions/_fzf_search_history.fish30
1 files changed, 30 insertions, 0 deletions
diff --git a/.config/fish/functions/_fzf_search_history.fish b/.config/fish/functions/_fzf_search_history.fish
new file mode 100644
index 00000000..d795c5c7
--- /dev/null
+++ b/.config/fish/functions/_fzf_search_history.fish
@@ -0,0 +1,30 @@
+function _fzf_search_history --description "Search command history. Replace the command line with the selected command."
+ # history merge incorporates history changes from other fish sessions
+ # it errors out if called in private mode
+ if test -z "$fish_private_mode"
+ builtin history merge
+ end
+
+ # Delinate commands throughout pipeline using null rather than newlines because commands can be multi-line
+ set commands_selected (
+ # Reference https://devhints.io/strftime to understand strftime format symbols
+ builtin history --null --show-time="%m-%d %H:%M:%S │ " |
+ _fzf_wrapper --read0 \
+ --print0 \
+ --multi \
+ --tiebreak=index \
+ --query=(commandline) \
+ --preview="echo -- {4..} | fish_indent --ansi" \
+ --preview-window="bottom:3:wrap" \
+ $fzf_history_opts |
+ string split0 |
+ # remove timestamps from commands selected
+ string replace --regex '^\d\d-\d\d \d\d:\d\d:\d\d │ ' ''
+ )
+
+ if test $status -eq 0
+ commandline --replace -- $commands_selected
+ end
+
+ commandline --function repaint
+end