Esiste un modo per trovare l'ultimo tasto usato in vim in modo che io possa usare la stessa funzione per più cose a seconda del tasto premuto.
Per esempio:
nn <F1> :call Fhandler()
nn <F2> :call Fhandler()
fu Fhandler()
if v:triggerKey == "<F1>"
elseif v:triggerKey == "<F2>"
...
endf
Ad esempio, in AutoHotKey ho A_ThisHotkey
quale potrebbe essere utilizzato per impostare la funzione proxy menzionata.