summaryrefslogtreecommitdiffstats
path: root/ui/src/components/utilities.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/utilities.rs')
-rw-r--r--ui/src/components/utilities.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/src/components/utilities.rs b/ui/src/components/utilities.rs
index c9289585..dfde2a02 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();