Solução 1
Selecione o arquivo e, em seguida,
- Clique na tecla do menu de contexto ,
- seguido pela tecla V .
Atecladomenudecontextoéaseguinte:
Fonte:
Solução 2 com AutoHotkey
Se a instalação do AutoHotkey for uma opção, aqui está outro jeito.
Use este script:
#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
Depois, selecione um arquivo e, em seguida,
- clique em V .