commit 232164c76d4045a189a21c870134ab1009104c4f from: Thomas Adam date: Fri May 31 09:16:47 2024 UTC mini-kill-whole-line: recompute completions When issuing the mini-kill-whole-line command, make sure we recompute the completions in the minibuffer, otherwise completions don't work as intended. Noticed by op@ on IRC. commit - 8c302f02a4c1695241bef98af134f09d2e051db6 commit + 232164c76d4045a189a21c870134ab1009104c4f blob - 06b75e8bd05fd57d642da37367663c2817bf4c2e blob + 57d01ea586adb3381066c9342720bcb3642f4165 --- cmd.c +++ cmd.c @@ -770,6 +770,8 @@ cmd_mini_kill_whole_line(struct buffer *buffer) minibuffer_taint_hist(); *buffer->current_line->parent->line = '\0'; buffer->cpoff = 0; + + recompute_completions(0); } void