The "Install CLI" menu button and `install_cli::Install` action are effectively no-op on Windows since the CLI is directly available in Windows Terminal (CMD prompt, PowerShell, etc.) after the user runs Zed installer package. Release Notes: - N/A Co-authored-by: Peter Tripp <peter@zed.dev>
8 lines
259 B
Rust
8 lines
259 B
Rust
#[cfg(not(target_os = "windows"))]
|
|
mod install_cli_binary;
|
|
mod register_zed_scheme;
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
pub use install_cli_binary::{InstallCliBinary, install_cli_binary};
|
|
pub use register_zed_scheme::{RegisterZedScheme, register_zed_scheme};
|