Home > Mobile >  Vscode duplicate current open file to new window on right shortcut key
Vscode duplicate current open file to new window on right shortcut key

Time:03-25

I was using visual studio code and wanted to open the current open file in duplicate window on the right. Is there a shortcut key for this?

CodePudding user response:

You can use Ctrl \

This will duplicate the window and open the current file in a window on the right, and you can access the windows using Ctrl 1 and Ctrl 2 to switch between left and right.

  • Related