You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, I don't use FZF on shells or operating systems other than Bash and Linux. Therefore, I'm unsure if it behaves the same way on other platforms or not.
Each token keeps its trailing non-whitespace delimiter. It was an early decision to make --with-nth work better with tabular data, but admittedly it doesn't work well with anchored matches with --nth as you have noticed. We may change this in the future, but for now, it is how it is, and you have to include the delimiter in your search term. i.e. kitty:$
Checklist
man fzf
)Output of
fzf --version
0.55.0 (fc69308)
OS
Shell
Problem / Steps to reproduce
Suppose I have a file named
jj
containing the below data.Considering
:
as a delimiter here, the directory paths in the file should be the 2nd column.Using
^
search syntax^
works as expected.cat jj | fzf --delimiter=":" --nth=2 --height 40%
Example-1:
Example-2:
Using
$
search syntax$
doesn't seems to be working as expected.cat jj | fzf --delimiter=":" --nth=2 --height 20%
Example-1:
Example:-2:
I hope I am not missing anything.
The text was updated successfully, but these errors were encountered: