mirror of
https://github.com/alacritty/alacritty.git
synced 2025-04-14 17:53:03 -04:00
Don't write v when pasting on macOS
This is a bit of an experiment to see if simply handling 'v' in the bindings will work or has any bugs not going through ReceivedCharacter. The change is necessary though to prevent 'v' from being written in front of every clipboard paste.
This commit is contained in:
parent
077a058cc4
commit
7e69a070aa
2 changed files with 40 additions and 6 deletions
|
@ -42,6 +42,8 @@ impl<N: input::Notify> Processor<N> {
|
|||
'\u{8}' | '\u{7f}' => (),
|
||||
// OSX arrow keys send invalid characters; ignore.
|
||||
'\u{f700}' | '\u{f701}' | '\u{f702}' | '\u{f703}' => (),
|
||||
// These letters are handled in the bindings system
|
||||
'v' => (),
|
||||
_ => {
|
||||
let encoded = c.encode_utf8();
|
||||
self.notifier.notify(encoded.as_slice().to_vec());
|
||||
|
|
44
src/input.rs
44
src/input.rs
|
@ -85,6 +85,9 @@ pub enum Action {
|
|||
|
||||
/// Paste contents of system clipboard
|
||||
Paste,
|
||||
|
||||
/// Send a char to pty
|
||||
Char(char)
|
||||
}
|
||||
|
||||
/// Bindings for the LEFT key.
|
||||
|
@ -198,10 +201,13 @@ static H_BINDINGS: &'static [Binding] = &[
|
|||
#[cfg(target_os="macos")]
|
||||
static V_BINDINGS: &'static [Binding] = &[
|
||||
Binding { mods: mods::SUPER, action: Action::Paste, mode: mode::ANY, notmode: mode::NONE },
|
||||
Binding { mods: mods::NONE, action: Action::Char('v'), mode: mode::ANY, notmode: mode::NONE },
|
||||
];
|
||||
|
||||
#[cfg(not(target_os="macos"))]
|
||||
static V_BINDINGS: &'static [Binding] = &[];
|
||||
static V_BINDINGS: &'static [Binding] = &[
|
||||
Binding { mods: mods::NONE, action: Action::Char('v'), mode: mode::ANY, notmode: mode::NONE },
|
||||
];
|
||||
|
||||
#[cfg(target_os="linux")]
|
||||
static MOUSE_MIDDLE_BINDINGS: &'static [Binding] = &[
|
||||
|
@ -337,17 +343,31 @@ impl Processor {
|
|||
// TermMode negative
|
||||
if binding.notmode.is_empty() || !mode.intersects(binding.notmode) {
|
||||
// Modifier keys
|
||||
if binding.mods.is_all() || mods.intersects(binding.mods) {
|
||||
if binding.mods.is_all() || mods == binding.mods {
|
||||
// everything matches; run the binding action
|
||||
match binding.action {
|
||||
Action::Esc(s) => notifier.notify(s.as_bytes()),
|
||||
Action::Paste => {
|
||||
println!("paste request");
|
||||
let clip = ClipboardContext::new().expect("get clipboard");
|
||||
clip.get_contents()
|
||||
.map(|contents| notifier.notify(contents.into_bytes()))
|
||||
.map(|contents| {
|
||||
println!("got contents");
|
||||
notifier.notify(contents.into_bytes())
|
||||
})
|
||||
.unwrap_or_else(|err| {
|
||||
err_println!("Error getting clipboard contents: {}", err);
|
||||
});
|
||||
|
||||
println!("ok");
|
||||
},
|
||||
Action::Char(c) => {
|
||||
// TODO encode_utf8 returns an iterator with "as_slice"
|
||||
// https://github.com/rust-lang/rust/issues/27784 has some
|
||||
// discussion about this API changing to `write_utf8` which
|
||||
// requires passing a &mut [u8] to be written into.
|
||||
let encoded = c.encode_utf8();
|
||||
notifier.notify(encoded.as_slice().to_vec());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -361,9 +381,13 @@ impl Processor {
|
|||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use term::mode::{self, TermMode};
|
||||
use std::borrow::Cow;
|
||||
|
||||
use glutin::mods;
|
||||
|
||||
use term::mode;
|
||||
|
||||
use super::Action;
|
||||
use super::Processor;
|
||||
use super::Binding;
|
||||
|
||||
|
@ -374,8 +398,8 @@ mod tests {
|
|||
}
|
||||
|
||||
impl super::Notify for Receiver {
|
||||
fn notify(&mut self, s: &str) {
|
||||
self.got = Some(String::from(s));
|
||||
fn notify<B: Into<Cow<'static, [u8]>>>(&mut self, item: B) {
|
||||
self.got = Some(String::from_utf8(item.into().to_vec()).unwrap());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -455,4 +479,12 @@ mod tests {
|
|||
mode: mode::APP_CURSOR | mode::APP_KEYPAD,
|
||||
mods: mods::NONE
|
||||
}
|
||||
|
||||
test_process_binding! {
|
||||
name: process_binding_fail_with_extra_mods,
|
||||
binding: Binding { mods: mods::SUPER, action: Action::Esc("arst"), mode: mode::ANY, notmode: mode::NONE },
|
||||
expect: None,
|
||||
mode: mode::NONE,
|
||||
mods: mods::SUPER | mods::ALT
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue