wthiel / SendClipboardAsKeystrokes.ahk
0 likes
0 forks
1 files
Last active 4 months ago
This script sends clipboard text as keystrokes with Ctrl+Shift+V. Useful when native paste doesn't work (e.g. SSH, RDP).
| 1 | ;-------------------------------------------------------------- |
| 2 | ; This script sends clipboard text as keystrokes with Ctrl+Shift+V. |
| 3 | ; Useful when native paste doesn't work (e.g. SSH, RDP). |
| 4 | ; Features: |
| 5 | ; - Shows a tooltip if the clipboard is empty. |
| 6 | ; - Adjustable SetKeyDelay for terminals that need slower input. |
| 7 | ; - Does NOT override normal Ctrl+V. |
| 8 | ;-------------------------------------------------------------- |
| 9 | |
| 10 | ; Adjust key delay here (ms between keys, ms press duration): |
Newer
Older