diff --git a/ui/src/components/utilities.rs b/ui/src/components/utilities.rs index c92895850..dfde2a02b 100644 --- a/ui/src/components/utilities.rs +++ b/ui/src/components/utilities.rs @@ -992,6 +992,12 @@ impl Component for StatusBar { .process_event(&mut UIEvent::InsertInput(Key::Char(*c)), context); return true; } + UIEvent::ExInput(Key::Paste(s)) => { + self.dirty = true; + self.ex_buffer + .process_event(&mut UIEvent::InsertInput(Key::Paste(s.clone())), context); + return true; + } UIEvent::ExInput(Key::Ctrl('u')) => { self.dirty = true; self.ex_buffer.clear();