PyCharm、PhpStorm、IntelliJ IDEA、GoLang文件夹右键菜单添加项目
赵克立博客发表于:2023-04-10 10:52:00浏览:1816次
安装jetbrains后右键菜单莫名其妙的丢了,导致打开项目很不方便,一般安装时会有个选项来添加,如下

但是如果使用Jetbrains Toolbox安装的话,好像默认是不会添加的,只能自己来修改注册表来添加了, 把下面代码中程序路径改为自己的,保存为对应的 xxx.reg文件,双击即可
GoLang.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\GoLang]
@="Open as GoLang"
"Icon"="\"D:\\Program Files\\JetBrains\\apps\\Goland\\ch-0\\222.4345.24\\bin\\goland64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\GoLang\command]
@="\"D:\\Program Files\\JetBrains\\apps\\Goland\\ch-0\\222.4345.24\\bin\\goland64.exe\" \"%v\""
IntelliJ IDEA.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\IDEA]
@="Open as IDEA"
"Icon"="\"D:\\Program Files\\JetBrains\\apps\\IDEA-U\\ch-0\\222.4345.14\\bin\\idea64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\IDEA\command]
@="\"D:\\Program Files\\JetBrains\\apps\\IDEA-U\\ch-0\\222.4345.14\\bin\\idea64.exe\" \"%v\""
PhpStorm.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\PhpStorm]
@="Open as PhpStorm"
"Icon"="\"D:\\Program Files\\JetBrains\\apps\\PhpStorm\\ch-0\\222.4345.15\\bin\\phpstorm64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\PhpStorm\command]
@="\"D:\\Program Files\\JetBrains\\apps\\PhpStorm\\ch-0\\222.4345.15\\bin\\phpstorm64.exe\" \"%v\""
PyCharm.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\PyCharm]
@="Open as PyCharm"
"Icon"="\"D:\\Program Files\\JetBrains\\apps\\PyCharm-C\\ch-0\\222.4345.23\\bin\\pycharm64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\PyCharm\command]
@="\"D:\\Program Files\\JetBrains\\apps\\PyCharm-C\\ch-0\\222.4345.23\\bin\\pycharm64.exe\" \"%v\""
>
推荐文章
- PHP设置全局代理
- Bandizip去除广告,注册图标,状态栏文本
- centos7 安装gitlab并修改端口、目录
- Windows11 出现开机后首次点击开始菜单应用图标时明显卡顿问题处理
- node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28‘ not found (required by node)解决方案
- 解决GITLAB无法启动runsv no running,手动重启又卡住的情况
- TP6使用lcobucci/jwt 4.0开发接口,用于token和鉴权
- 网络攻击防护经验分享
- centos7 无法启动 修复Internal error XFS_WANT_CORRUPTED_GOTO报错
- Thinkphp6 实现保持登录
