nu-command 0.112.1

Nushell's built-in commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(any(target_os = "macos", target_os = "windows", target_os = "linux"))]
mod arboard_provider;

#[cfg(any(target_os = "macos", target_os = "windows", target_os = "linux"))]
mod error_mapper;
pub mod provider;

#[cfg(target_os = "linux")]
pub(crate) mod linux;

// On other platforms, the clipboard is either a dummy or implemented in `provider.rs`.
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
pub(crate) mod dummy;