From f8786c25be7d52283ae2e223861956bd1d926d60 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Mon, 20 May 2013 00:31:27 -0700 Subject: [PATCH] Fix for failing to update command line while cycling through tab completions https://github.com/fish-shell/fish-shell/issues/765 --- reader.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reader.cpp b/reader.cpp index f7f92e584..5f3758b58 100644 --- a/reader.cpp +++ b/reader.cpp @@ -3035,6 +3035,9 @@ const wchar_t *reader_readline(void) /* Since we just inserted a completion, don't immediately do a new autosuggestion */ data->suppress_autosuggestion = true; + + /* Trigger repaint (see #765) */ + reader_repaint_if_needed(); } } else