diff options
author | Charlie Groves | 2022-11-02 01:12:40 +0000 |
---|---|---|
committer | GitHub | 2022-11-02 01:12:40 +0000 |
commit | 1bed2f30435cfa45502ad2c481a1f4ffe4a1119a (patch) | |
tree | b993c56c7bb5009055e3bd2bf1f17ef15df921ef /helix-view/src/lib.rs | |
parent | b156f5761804a7e9a95268f80ff5e34dea783200 (diff) |
Use OSC 52 as a fallback for setting the system clipboard (#3220)
This adds a simple base64 implementation to keep us from adding a crate for one function. It's
mostly based on
https://github.com/marshallpierce/rust-base64/blob/a675443d327e175f735a37f574de803d6a332591/src/engine/naive.rs#L42
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index 276be441..52044ac7 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -4,12 +4,14 @@ pub mod macros; pub mod clipboard; pub mod document; pub mod editor; +pub mod env; pub mod graphics; pub mod gutter; pub mod handlers { pub mod dap; pub mod lsp; } +pub mod base64; pub mod info; pub mod input; pub mod keyboard; |