现在,我只想在系统默认编辑器中打开来自服务器的文件。
我可以右击并查看/编辑上下文菜单并且有效。
那只是因为卡车开得太慢我是功率等级 9000 的用户!我追捕了wiki 键盘快捷键页面但我在想,“也许有人忘了更新这个页面”。
答案1
解决方案 1
选择文件,然后
- 单击该context menu键,
- 然后按一下V键。
关键context menu是这个:
来源:https://en.wikipedia.org/wiki/Menu_key
解决方案 2:使用 AutoHotkey
如果安装自动热键是一种选择,这是另一种方法。
使用此脚本:
#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。