We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To test fzy with the following prompt:
fzy
Make your choice! >
I execute the following command:
ls | fzy -p "$(printf 'Make your choice!\n> ')"
The first line of the prompt will appear multiple times with each interaction with fzy.
The intended behaviour should be close to, but not the same as:
echo 'Make your choice!' > /dev/tty; ls | fzy -p '> '
with the relevent difference being that the entire prompt should be erased at the end of execution, not just the last line.
I'll look at the code to see if I can fix this bug myself.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To test
fzy
with the following prompt:I execute the following command:
The first line of the prompt will appear multiple times with each interaction with
fzy
.The intended behaviour should be close to, but not the same as:
with the relevent difference being that the entire prompt should be erased at the end of execution, not just the last line.
I'll look at the code to see if I can fix this bug myself.
The text was updated successfully, but these errors were encountered: