Fix issue with some international inputs

cc #87, #55
This commit is contained in:
Joe Wilm 2017-01-06 22:04:51 -08:00
parent 852c2d8f15
commit bcd464aeec
1 changed files with 9 additions and 8 deletions

View File

@ -363,6 +363,8 @@ 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
@ -374,7 +376,6 @@ impl<'a, N: Notify + 'a> Processor<'a, N> {
self.ctx.selection.clear();
}
}
}
/// Attempts to find a binding and execute its action
///