forked from davidroman0O/vtable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvtable.tape
More file actions
204 lines (184 loc) · 5.36 KB
/
vtable.tape
File metadata and controls
204 lines (184 loc) · 5.36 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# VHS documentation
#
# Output:
# Output <path>.gif Create a GIF output at the given <path>
# Output <path>.mp4 Create an MP4 output at the given <path>
# Output <path>.webm Create a WebM output at the given <path>
#
# Require:
# Require <string> Ensure a program is on the $PATH to proceed
#
# Settings:
# Set FontSize <number> Set the font size of the terminal
# Set FontFamily <string> Set the font family of the terminal
# Set Height <number> Set the height of the terminal
# Set Width <number> Set the width of the terminal
# Set LetterSpacing <float> Set the font letter spacing (tracking)
# Set LineHeight <float> Set the font line height
# Set LoopOffset <float>% Set the starting frame offset for the GIF loop
# Set Theme <json|string> Set the theme of the terminal
# Set Padding <number> Set the padding of the terminal
# Set Framerate <number> Set the framerate of the recording
# Set PlaybackSpeed <float> Set the playback speed of the recording
# Set MarginFill <file|#000000> Set the file or color the margin will be filled with.
# Set Margin <number> Set the size of the margin. Has no effect if MarginFill isn't set.
# Set BorderRadius <number> Set terminal border radius, in pixels.
# Set WindowBar <string> Set window bar type. (one of: Rings, RingsRight, Colorful, ColorfulRight)
# Set WindowBarSize <number> Set window bar size, in pixels. Default is 40.
# Set TypingSpeed <time> Set the typing speed of the terminal. Default is 50ms.
#
# Sleep:
# Sleep <time> Sleep for a set amount of <time> in seconds
#
# Type:
# Type[@<time>] "<characters>" Type <characters> into the terminal with a
# <time> delay between each character
#
# Keys:
# Escape[@<time>] [number] Press the Escape key
# Backspace[@<time>] [number] Press the Backspace key
# Delete[@<time>] [number] Press the Delete key
# Insert[@<time>] [number] Press the Insert key
# Down[@<time>] [number] Press the Down key
# Enter[@<time>] [number] Press the Enter key
# Space[@<time>] [number] Press the Space key
# Tab[@<time>] [number] Press the Tab key
# Left[@<time>] [number] Press the Left Arrow key
# Right[@<time>] [number] Press the Right Arrow key
# Up[@<time>] [number] Press the Up Arrow key
# Down[@<time>] [number] Press the Down Arrow key
# PageUp[@<time>] [number] Press the Page Up key
# PageDown[@<time>] [number] Press the Page Down key
# Ctrl+<key> Press the Control key + <key> (e.g. Ctrl+C)
#
# Display:
# Hide Hide the subsequent commands from the output
# Show Show the subsequent commands in the output
Output demo.gif
Require go
Set FontSize 16
Set Width 1200
Set Height 600
Set Padding 20
Set BorderRadius 10
Set WindowBar Colorful
Set LoopOffset 50%
Set PlaybackSpeed 1.0
Set MarginFill "#2D3748"
Set Margin 20
# Start
Hide
Type "cd examples" Enter
Sleep 500ms
Show
# Run the example
Type "go run ." Enter
Sleep 2s
# Scroll down
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Sleep 1s
# Scroll down quickly to demonstrate virtualization
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Sleep 1.5s
# Page down a few times
Type "d" Sleep 1s
Type "d" Sleep 1s
Type "d" Sleep 1s
# Jump to end to show we can handle large datasets
Type "G" Sleep 2s
# Page up
Type "u" Sleep 1s
Type "u" Sleep 1s
# Jump to beginning
Type "g" Sleep 2s
# Switch to table view
Tab Sleep 2s
# Scroll down in table
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Type "j" Sleep 200ms
Sleep 1s
# Scroll down quickly in table
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Type "j" Sleep 50ms
Sleep 1.5s
# Page down in table
Type "d" Sleep 1s
Type "d" Sleep 1s
# Search for item 500
Type "f" Sleep 1s
Type "500" Sleep 1s
Enter Sleep 2s
# Change theme
Type "t" Sleep 1.5s
Type "t" Sleep 1.5s
Type "t" Sleep 1.5s
# Scroll up
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Type "k" Sleep 50ms
Sleep 1.5s
# Jump to start
Type "g" Sleep 2s
# End the demo
Type "q" Sleep 1s