diff --git a/src/input.rs b/src/input.rs index 8823b89e..47ce52fa 100644 --- a/src/input.rs +++ b/src/input.rs @@ -363,16 +363,17 @@ impl<'a, N: Notify + 'a> Processor<'a, N> { return; } - // Didn't process a binding; print the provided character - if let Some(mut string) = string { - // from ST - if string.len() == 1 && mods.contains(mods::ALT) { - string.insert(0, '\x1b'); - } + } - self.ctx.notifier.notify(string.into_bytes()); - self.ctx.selection.clear(); + // Didn't process a binding; print the provided character + if let Some(mut string) = string { + // from ST + if string.len() == 1 && mods.contains(mods::ALT) { + string.insert(0, '\x1b'); } + + self.ctx.notifier.notify(string.into_bytes()); + self.ctx.selection.clear(); } }