Windows下 py檔案右鍵選單的增刪

2022-07-17 17:36:15 字數 729 閱讀 2167

一、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分支下。

windows滑鼠右鍵檔案太多

1 網上找的 已經驗證太難找,並沒有多大用 單擊windows的 開始 選單,單擊 執行 在 開啟 框中鍵入 regedit 單擊 確定 按鈕,開啟 登錄檔編輯器 展開 hkey classes root shellex contextmenuhandlers 分支,在其下找到要刪除的無用項,然後右...

Windows下右鍵增加Typora選項

開啟登錄檔 windows r鍵開啟執行,輸入regedit開啟登錄檔 定位在路徑處輸入hkey classes root directory background shell,定位到shell處 新建項typora 點選shell,右鍵新建項,命名為typora,點選typora,點選右邊預設,右...

Windows新增右鍵新增 md檔案

因為習慣用markdown來寫文件,所以常常需要新建.md文件,但由於windows並不會自帶把.md文件放入右鍵新建項中 像word那樣 所以方便起見,自己手動設定,其實就是把它寫進windows的登錄檔。因為習慣用markdown來寫文件,所以常常需要新建.md文件,但由於windows並不會自...