summaryrefslogtreecommitdiffstats
path: root/src/clipboard.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/clipboard.rs')
-rw-r--r--src/clipboard.rs86
1 files changed, 43 insertions, 43 deletions
diff --git a/src/clipboard.rs b/src/clipboard.rs
index a0492e61..a7ab23fa 100644
--- a/src/clipboard.rs
+++ b/src/clipboard.rs
@@ -6,69 +6,69 @@ use std::io::Write;
use std::process::{Command, Stdio};
fn execute_copy_command(command: Command, text: &str) -> Result<()> {
- let mut command = command;
+ let mut command = command;
- let mut process = command
- .stdin(Stdio::piped())
- .stdout(Stdio::null())
- .spawn()
- .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
+ let mut process = command
+ .stdin(Stdio::piped())
+ .stdout(Stdio::null())
+ .spawn()
+ .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
- process
- .stdin
- .as_mut()
- .ok_or_else(|| anyhow!("`{:?}`", command))?
- .write_all(text.as_bytes())
- .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
+ process
+ .stdin
+ .as_mut()
+ .ok_or_else(|| anyhow!("`{:?}`", command))?
+ .write_all(text.as_bytes())
+ .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
- process
- .wait()
- .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
+ process
+ .wait()
+ .map_err(|e| anyhow!("`{:?}`: {}", command, e))?;
- Ok(())
+ Ok(())
}
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
fn gen_command(
- path: impl AsRef<OsStr>,
- xclip_syntax: bool,
+ path: impl AsRef<OsStr>,
+ xclip_syntax: bool,
) -> Command {
- let mut c = Command::new(path);
- if xclip_syntax {
- c.arg("-selection");
- c.arg("clipboard");
- } else {
- c.arg("--clipboard");
- }
- c
+ let mut c = Command::new(path);
+ if xclip_syntax {
+ c.arg("-selection");
+ c.arg("clipboard");
+ } else {
+ c.arg("--clipboard");
+ }
+ c
}
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
pub fn copy_string(string: &str) -> Result<()> {
- use std::path::PathBuf;
- use which::which;
- let (path, xclip_syntax) = which("xclip").ok().map_or_else(
- || {
- (
- which("xsel")
- .ok()
- .unwrap_or_else(|| PathBuf::from("xsel")),
- false,
- )
- },
- |path| (path, true),
- );
+ use std::path::PathBuf;
+ use which::which;
+ let (path, xclip_syntax) = which("xclip").ok().map_or_else(
+ || {
+ (
+ which("xsel")
+ .ok()
+ .unwrap_or_else(|| PathBuf::from("xsel")),
+ false,
+ )
+ },
+ |path| (path, true),
+ );
- let cmd = gen_command(path, xclip_syntax);
- execute_copy_command(cmd, string)
+ let cmd = gen_command(path, xclip_syntax);
+ execute_copy_command(cmd, string)
}
#[cfg(target_os = "macos")]
pub fn copy_string(string: &str) -> Result<()> {
- execute_copy_command(Command::new("pbcopy"), string)
+ execute_copy_command(Command::new("pbcopy"), string)
}
#[cfg(windows)]
pub fn copy_string(string: &str) -> Result<()> {
- execute_copy_command(Command::new("clip"), string)
+ execute_copy_command(Command::new("clip"), string)
}