Skip to content

Commit

Permalink
Make external terminal provider configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer authored and thomasskk committed Sep 9, 2022
1 parent c286fa6 commit eae83bc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions helix-view/src/clipboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,12 @@ pub mod provider {
}
}

impl Default for NopProvider {
fn default() -> Self {
Self::new()
}
}

#[cfg(not(target_os = "windows"))]
impl Default for NopProvider {
fn default() -> Self {
Expand Down

0 comments on commit eae83bc

Please sign in to comment.