DEV Community

Discussion on: How I Set Up VSCode For Recording a Screencast

Collapse
 
soc_sieng_81c5ada16e720f9 profile image
Soc Sieng

Thanks for the tip. I've been zooming in (command +) on my mac which changes to zoom on all VSCode instances. Applying it per workspace makes much more sense.

For what it's worth, I also disable the minimap:

{
  "editor.minimap.enabled": false
}
Enter fullscreen mode Exit fullscreen mode

One thing that I struggle with is error free and fast typing, so I ended up creating a command line utility to script up keystrokes and mouse commands: github.com/socsieng/sendkeys

It helps me organize and script up my actions without the pressure of nailing the execution when the screen is being recorded.

Collapse
 
5t3ph profile image
Stephanie Eckles

Nice, I'll have to check that out!