Skip to content

Commit e77b7d1

Browse files
committed
fix: Recalculate completion after pasting into prompt
1 parent 8a4fbf6 commit e77b7d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

helix-term/src/ui/prompt.rs

+1
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ impl Component for Prompt {
470470
let event = match event {
471471
Event::Paste(data) => {
472472
self.insert_str(data);
473+
self.recalculate_completion(cx.editor);
473474
return EventResult::Consumed(None);
474475
}
475476
Event::Key(event) => *event,

0 commit comments

Comments
 (0)