現在,我只想在系統預設編輯器中從伺服器開啟檔案。
我可以右鍵單擊並查看/編輯上下文選單,它可以工作。
這只是為了拖慢速度,因為我是等級9000的用戶!我追捕了維基鍵盤快速鍵頁面但我在想,「也許有人忘記更新此頁面」。
答案1
解決方案1
選擇文件,然後
- 按一下該context menu鍵,
- 接下來是V鑰匙。
關鍵context menu是這個:
來源:https://en.wikipedia.org/wiki/Menu_key
使用 AutoHotkey 的解決方案 2
如果安裝自動熱鍵是一種選擇,這是另一種方法。
使用這個腳本:
#IfWinActive ahk_class wxWindowNR ; Only run when FileZilla has focus
v:: ; Set "v" for "view" as the keyboard shortcut
Send {AppsKey} ; Press the "context menu" key
Sleep 100 ; Give the context menu time to appear
Send v ; Press v for "View/Edit"
return
然後選擇一個文件,然後
- 點擊V。