1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Clipboard automation instructions
//!
//! Provides clipboard operations via script instructions:
//! - `copy`: Copy text to clipboard
//! - `paste`: Paste clipboard content via Ctrl+V
//!
//! # Instructions
//!
//! ## `copy` - Copy text to clipboard
//!
//! **Syntax:** `copy <text>`
//!
//! **Examples:**
//! ```text
//! copy Hello World # Copy "Hello World" to clipboard
//! copy "Hello World" # Copy with quotes
//! copy "Line 1\nLine 2" # Copy multi-line text
//! ```
//!
//! ## `paste` - Paste clipboard content
//!
//! **Syntax:** `paste [delay_ms]`
//!
//! **Examples:**
//! ```text
//! paste # Paste with default 20ms delay
//! paste 20 # Paste with 20ms delay
//! paste 50 # Paste with 50ms delay
//! ```
// Submodules
// Re-export handlers
pub use CopyHandler;
pub use PasteHandler;