vscode在安装的时候没有勾选右键显示操作

1,221 阅读2分钟

新建一个后缀名是reg的文件写入以下的内容

vsCodeOpenFolder.reg

#index.reg
Windows Registry Editor Version 5.00   
   
; Open files   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code]   
@="Edit with VS Code"   
"Icon"="C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe,0"   
   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\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"="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\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"="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\" \"%V\""
C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe,0"   
   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\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"="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\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"="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]   
@="\"C:\\Users\\你的账户名\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\" \"%V\""

注意:VS Code的安装路径这里使用的是默认的“E:\Program Files (x86)\Microsoft VS Code\” 你要把所有需要路径的地方换成你安装的路径才对。

然后双击这个文件就行了, 如果有问题就以管理员的身份运行。