-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdemo.tape
More file actions
42 lines (35 loc) · 705 Bytes
/
Copy pathdemo.tape
File metadata and controls
42 lines (35 loc) · 705 Bytes
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
38
39
40
41
42
Output demo.gif
Set Shell "bash"
Set FontSize 15
Set Width 850
Set Height 400
Set Theme "Catppuccin Mocha"
Set Padding 20
# -- Without smartclip --
Set TypingSpeed 0
Type "# ✗ pasting without smartclip"
Enter
Sleep 1.5s
# Simulate broken paste — each line runs separately
Type "curl"
Enter
Sleep 0.5s
Type " -X POST"
Enter
Type ' -H "Content-Type: json"'
Enter
Type " https://api.example.com"
Enter
Set TypingSpeed 60ms
Sleep 4s
# -- With smartclip --
Set TypingSpeed 0
Type ""
Enter
Type "# ✓ pasting with smartclip"
Enter
Sleep 1.5s
# The fixed one-liner lands in prompt — don't execute
Type 'curl -X POST -H "Content-Type: json" https://api.example.com'
Set TypingSpeed 60ms
Sleep 4s