fix(core): change backend in alacritty patch to fix #787

This commit is contained in:
Federico Terzi 2021-10-22 21:32:31 +02:00
parent b20aa9c702
commit e6599c1036

View File

@ -19,6 +19,8 @@
use std::sync::Arc;
use espanso_config::config::Backend;
use crate::patch::patches::{PatchedConfig, Patches};
use crate::patch::PatchDefinition;
@ -33,6 +35,7 @@ pub fn patch() -> PatchDefinition {
name,
Patches {
paste_shortcut: Some(Some("CTRL+SHIFT+V".to_string())),
backend: Some(Backend::Clipboard),
..Default::default()
},
))