1
0
mirror of https://github.com/helix-editor/helix synced 2024-11-10 10:34:45 +01:00

clipboard: fix import on macOS

This commit is contained in:
Blaž Hrastnik 2022-03-28 11:08:38 +09:00
parent 33510d60f4
commit 511f37c736
No known key found for this signature in database
GPG Key ID: 1238B9C4AD889640

@ -63,7 +63,7 @@ pub fn get_clipboard_provider() -> Box<dyn ClipboardProvider> {
#[cfg(target_os = "macos")]
pub fn get_clipboard_provider() -> Box<dyn ClipboardProvider> {
use command::exists;
use provider::command::exists;
if exists("pbcopy") && exists("pbpaste") {
command_provider! {