FileZilla 檢視/編輯鍵盤快速鍵(或熱鍵)以在系統編輯器中開啟文件

FileZilla 檢視/編輯鍵盤快速鍵(或熱鍵)以在系統編輯器中開啟文件

現在,我只想在系統預設編輯器中從伺服器開啟檔案。

我可以右鍵單擊並查看/編輯上下文選單,它可以工作。

如何建立熱鍵快捷方式以在本機編輯器中檢視/編輯檔案?

這只是為了拖慢速度,因為我是等級9000的用戶!我追捕了維基鍵盤快速鍵頁面但我在想,「也許有人忘記更新此頁面」。

答案1

解決方案1

選擇文件,然後

  1. 按一下該context menu鍵,
  2. 接下來是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

然後選擇一個文件,然後

  1. 點擊V

相關內容