.py文件右键Edit with IDLE的增删
本帖最后由 简ai 于 2020-4-4 14:01 编辑打开window注册表:在 “运行”输入框中输入“regedit”
一、pythonxy在安装之后向 .py文件的右键菜单添加了 "Edit with IDLE"和"Run in interactive mode"两个条目。对应注册表项有:
\HKEY_CLASSES_ROOT\Python.File\shell\Edit with IDLE\command 值为:
"D:\devenv\Python27\pythonw.exe" "D:\devenv\Python27\Lib\idlelib\idle.pyw" -e "%1"
\HKEY_CLASSES_ROOT\Python.File\shell\Run in interactive mode\command 值为:
"D:\devenv\Python27\python.exe" "-i" "%1" %*
\HKEY_CLASSES_ROOT\Python.File\shell\open\command 值为:
"D:\devenv\Python27\python.exe" "%1" %*
二、安装 Python Tools for VS后,.py文件的右键菜单添加了 "Edit with Visual Studio"。
对应注册表项为:\HKEY_CLASSES_ROOT\py_auto_file\shell\Edit with Visual Studio
因为py_auto_file项的优先级高于Python.File的,所以前面三种打开方式都会消失掉,可以将需要的条目加到py_auto_file分支下。
注意:仅供参考,亲测有效!!! Run in interactive mode,这个我的目录下没有,只有另外两个怎么办 其实这样就行了,我把那三个值改掉都没问题:
Windows Registry Editor Version 5.00
@="Python.NoConFile"
"Content Type"="text/x-python"
@="Python.NoConFile"
"Content Type"="text/x-python"
页:
[1]