mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
..
This commit is contained in:
parent
b910b5f0ab
commit
e42ec9f429
1 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ impl Clipboard {
|
||||||
return s.into();
|
return s.into();
|
||||||
}
|
}
|
||||||
|
|
||||||
self.content.lock().clone()
|
self.content.borrow().clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
|
@ -101,7 +101,7 @@ impl Clipboard {
|
||||||
use clipboard_win::{formats, set_clipboard};
|
use clipboard_win::{formats, set_clipboard};
|
||||||
|
|
||||||
let s = s.as_ref().to_owned();
|
let s = s.as_ref().to_owned();
|
||||||
*self.content.lock() = s.clone();
|
*self.content.borrow_mut() = s.clone();
|
||||||
|
|
||||||
tokio::task::spawn_blocking(move || set_clipboard(formats::Unicode, s.to_string_lossy()))
|
tokio::task::spawn_blocking(move || set_clipboard(formats::Unicode, s.to_string_lossy()))
|
||||||
.await
|
.await
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue