diff options
author | Blaž Hrastnik | 2022-03-28 02:08:38 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-28 02:08:38 +0000 |
commit | 511f37c736f7c64fe1047c57e6bf87e61f60747b (patch) | |
tree | 030e4e17acab26b6b09902fe491014117371fe29 /helix-view/src | |
parent | 33510d60f4dab5c7f4dd6a5e16b4005827c1389b (diff) |
clipboard: fix import on macOS
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/clipboard.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/clipboard.rs b/helix-view/src/clipboard.rs index 85b41148..c213827e 100644 --- a/helix-view/src/clipboard.rs +++ b/helix-view/src/clipboard.rs @@ -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! { |