From 655fa5d9aaaabe911dfa57961028e3c816525a22 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 24 Nov 2013 12:56:26 +0900 Subject: [PATCH] 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` --- fzf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fzf b/fzf index 142d629..2e53d98 100755 --- a/fzf +++ b/fzf @@ -10,7 +10,7 @@ # URL: https://github.com/junegunn/fzf # Author: Junegunn Choi # License: MIT -# Last update: November 20, 2013 +# Last update: November 24, 2013 # # Copyright (c) 2013 Junegunn Choi # @@ -630,6 +630,7 @@ class FZF print_item row, tokens, chosen, selected end print_info + print_input end end