Commit Diff
- Commit:
232164c76d4045a189a21c870134ab1009104c4f
- From:
- Thomas Adam <thomas.adam22@gmail.com>
- Date:
- Message:
- 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.
- Actions:
- Patch | Tree
--- 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