From 511f37c736f7c64fe1047c57e6bf87e61f60747b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Mon, 28 Mar 2022 11:08:38 +0900 Subject: [PATCH] clipboard: fix import on macOS --- helix-view/src/clipboard.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-view/src/clipboard.rs b/helix-view/src/clipboard.rs index 85b411482..c213827ee 100644 --- a/helix-view/src/clipboard.rs +++ b/helix-view/src/clipboard.rs @@ -63,7 +63,7 @@ pub fn get_clipboard_provider() -> Box { #[cfg(target_os = "macos")] pub fn get_clipboard_provider() -> Box { - use command::exists; + use provider::command::exists; if exists("pbcopy") && exists("pbpaste") { command_provider! {