aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src
diff options
context:
space:
mode:
authorAmit Beka2022-07-31 08:05:34 +0000
committerGitHub2022-07-31 08:05:34 +0000
commitfe3a9a868ea944a17f5a70e892bd8b985d6485e9 (patch)
tree15b1a47cb66275458cd1dbd5484affbb64640106 /helix-view/src
parente405e88c86ecf98ff432e7b95a0147ca3de97e3a (diff)
clipboard: add logging and healthcheck (#3271)
* add logging to clipboard setup * healthcheck: add clipboard provider name Co-authored-by: amitbeka <--->
Diffstat (limited to 'helix-view/src')
-rw-r--r--helix-view/src/clipboard.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/helix-view/src/clipboard.rs b/helix-view/src/clipboard.rs
index fed1deb1..4d57a5b7 100644
--- a/helix-view/src/clipboard.rs
+++ b/helix-view/src/clipboard.rs
@@ -17,6 +17,10 @@ pub trait ClipboardProvider: std::fmt::Debug {
#[cfg(not(windows))]
macro_rules! command_provider {
(paste => $get_prg:literal $( , $get_arg:literal )* ; copy => $set_prg:literal $( , $set_arg:literal )* ; ) => {{
+ log::info!(
+ "Using {} to interact with the system clipboard",
+ if $set_prg != $get_prg { format!("{}+{}", $set_prg, $get_prg)} else { $set_prg.to_string() }
+ );
Box::new(provider::command::Provider {
get_cmd: provider::command::Config {
prg: $get_prg,
@@ -36,6 +40,10 @@ macro_rules! command_provider {
primary_paste => $pr_get_prg:literal $( , $pr_get_arg:literal )* ;
primary_copy => $pr_set_prg:literal $( , $pr_set_arg:literal )* ;
) => {{
+ log::info!(
+ "Using {} to interact with the system and selection (primary) clipboard",
+ if $set_prg != $get_prg { format!("{}+{}", $set_prg, $get_prg)} else { $set_prg.to_string() }
+ );
Box::new(provider::command::Provider {
get_cmd: provider::command::Config {
prg: $get_prg,
@@ -146,6 +154,9 @@ mod provider {
#[cfg(not(target_os = "windows"))]
impl NopProvider {
pub fn new() -> Self {
+ log::warn!(
+ "No clipboard provider found! Yanking and pasting will be internal to Helix"
+ );
Self {
buf: String::new(),
primary_buf: String::new(),
@@ -184,6 +195,7 @@ mod provider {
#[cfg(target_os = "windows")]
impl ClipboardProvider for WindowsProvider {
fn name(&self) -> Cow<str> {
+ log::info!("Using clipboard-win to interact with the system clipboard");
Cow::Borrowed("clipboard-win")
}