mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
fix: Recalculate completion after pasting into prompt
This commit is contained in:
parent
8a4fbf6daf
commit
e77b7d147c
1 changed files with 1 additions and 0 deletions
|
@ -470,6 +470,7 @@ impl Component for Prompt {
|
||||||
let event = match event {
|
let event = match event {
|
||||||
Event::Paste(data) => {
|
Event::Paste(data) => {
|
||||||
self.insert_str(data);
|
self.insert_str(data);
|
||||||
|
self.recalculate_completion(cx.editor);
|
||||||
return EventResult::Consumed(None);
|
return EventResult::Consumed(None);
|
||||||
}
|
}
|
||||||
Event::Key(event) => *event,
|
Event::Key(event) => *event,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue