m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 00:03:39 -05:00

Update query line after update_list call

This commit is the workaround for the curses issue where the query
string on the screen is truncated after the cursor when the list is
updated: e.g. `aaac|bbb`
This commit is contained in:
Junegunn Choi
2013-11-24 12:56:26 +09:00
parent 9a49a29c7f
commit 655fa5d9aa

3
fzf
View File

@@ -10,7 +10,7 @@
# URL: https://github.com/junegunn/fzf # URL: https://github.com/junegunn/fzf
# Author: Junegunn Choi # Author: Junegunn Choi
# License: MIT # License: MIT
# Last update: November 20, 2013 # Last update: November 24, 2013
# #
# Copyright (c) 2013 Junegunn Choi # Copyright (c) 2013 Junegunn Choi
# #
@@ -630,6 +630,7 @@ class FZF
print_item row, tokens, chosen, selected print_item row, tokens, chosen, selected
end end
print_info print_info
print_input
end end
end end