设置右键文件夹打开Idea

参考:https://blog.csdn.net/qq_35077107/article/details/111291852

手动设置Regedit

1、设置显示文字和图标
image.png
2、设置打开命令
image.png

自动设置Regedit

修改idea执行文件位置,然后执行导入即可。

  • 第一部分是设置打开选中的目录。
  • 第二部分是设置右键空白部分打开当前目录

    idea.reg

  1. Windows Registry Editor Version 5.00
  2. [HKEY_CLASSES_ROOT\Directory\shell\IDEA]
  3. @="使用Idea打开选中目录"
  4. "Icon"="C:\\develop\\ideaIU_2020.1.1_Portable\\bin\\idea64.exe"
  5. [HKEY_CLASSES_ROOT\Directory\shell\IDEA\command]
  6. @="\"C:\\develop\\ideaIU_2020.1.1_Portable\\bin\\idea64.exe\" \"%1\""
  7. [HKEY_CLASSES_ROOT\Directory\Background\shell\IDEA]
  8. @="使用Idea打开当前目录"
  9. "Icon"="C:\\develop\\ideaIU_2020.1.1_Portable\\bin\\idea64.exe"
  10. [HKEY_CLASSES_ROOT\Directory\Background\shell\IDEA\command]
  11. @="\"C:\\develop\\ideaIU_2020.1.1_Portable\\bin\\idea64.exe\" \"%v.\""

效果:
image.png