Fix for failing to update command line while cycling through tab completions

https://github.com/fish-shell/fish-shell/issues/765
This commit is contained in:
ridiculousfish 2013-05-20 00:31:27 -07:00
parent 92b2c28532
commit f8786c25be

View File

@ -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