mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 05:53:59 +00:00
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:
parent
92b2c28532
commit
f8786c25be
1 changed files with 3 additions and 0 deletions
|
@ -3035,6 +3035,9 @@ const wchar_t *reader_readline(void)
|
||||||
|
|
||||||
/* Since we just inserted a completion, don't immediately do a new autosuggestion */
|
/* Since we just inserted a completion, don't immediately do a new autosuggestion */
|
||||||
data->suppress_autosuggestion = true;
|
data->suppress_autosuggestion = true;
|
||||||
|
|
||||||
|
/* Trigger repaint (see #765) */
|
||||||
|
reader_repaint_if_needed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue