No direct way of doing this, but the automation can be achieved with a workaround (it's not really pretty, but it works):
command ssh
\ : let $SSH_FILE = system('tempfile -d %d -s .ssh')
\ | execute '!echo ''%a'' > $SSH_FILE; ls $SSH_FILE %%U'
\ | execute 'normal l'
\ | execute '!rm $SSH_FILE'
This creates file with .ssh extension in the current directory, uses it with FUSE and removes afterward.