탐색기의 Context Menu 에 Edit with VS Code 에서 열기 를 넣으려면 레지스트리에 추가 정보를 입력해야 한다.
아래 파일을 받아서, VSCode가 있는 경로를 수정해서 레지스트리에 넣읍시다.
Windows Registry Editor Version 5.00 ; Open files [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] @="Edit with VS Code" "Icon"="\"D:\\App\\Microsoft VS Code\\Code.exe\",0" [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] @="\"D:\\App\\Microsoft VS Code\\Code.exe\" \"%1\"" ; This will make it appear when you right click ON a folder ; The "Icon" line can be removed if you don't want the icon to appear [HKEY_CLASSES_ROOT\Directory\shell\vscode] @="Open Folder as VS Code Project" "Icon"="\"D:\\App\\Microsoft VS Code\\Code.exe\",0" [HKEY_CLASSES_ROOT\Directory\shell\vscode\command] @="\"D:\\App\\Microsoft VS Code\\Code.exe\" \"%1\"" ; This will make it appear when you right click INSIDE a folder ; The "Icon" line can be removed if you don't want the icon to appear [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode] @="Open Folder as VS Code Project" "Icon"="\"D:\\App\\Microsoft VS Code\\Code.exe\",0" [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command] @="\"D:\\App\\Microsoft VS Code\\Code.exe\" \"%V\""