-
|
Hello everyone. I have been extensively using the following fzf command to interactively grep through my text files: fzf --ansi \
--delimiter : \
--bind "change:reload:sleep 0.1; rg --multiline --line-number --no-heading --color=always --smart-case {q} || true" \
--bind "enter:execute($editcommand)" \
--preview "bat --style=numbers --color=always --highlight-line {2} {1}" \
--preview-window="right:66%:wrap" \
--reverse --height 100%and it's been working great, however, there is one feature I'm missing. I would like to have a It would effectively be like: I was looking for an option like Can this be somehow implemented? Looking forward to any advice! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
related: #4279 you can write a action to store some filtered result in a tmpfile, then cat it out to reload match placeholder: |
Beta Was this translation helpful? Give feedback.
related: #4279
although it's not live action, I think it can be done similar
you can write a action to store some filtered result in a tmpfile, then cat it out to reload
match placeholder: