1
According to this video https://www.youtube.com/watch?v=pN-GCcnI9Es it is possible to access another Unix machine with Vim and continue to edit the file from where I left off.
Like I can do?
1
According to this video https://www.youtube.com/watch?v=pN-GCcnI9Es it is possible to access another Unix machine with Vim and continue to edit the file from where I left off.
Like I can do?
2
The syntax is:
vim scp://user@host//path_do_arquivo
Don’t forget the two bars to declare the path complete.
Source: http://vim.wikia.com/wiki/Editing_remote_files_via_scp_in_vim
Only as an add-on: if the user is and even the path can be reactive, simplify to vim scp://host/path
Browser other questions tagged terminal vim unix
You are not signed in. Login or sign up in order to post.
Ideal is to use ssh.
– Mansueli
Just as Kyllopardiun said, that I know only the vim does not do that, unless there is some plugin. Ideal is for you to connect to the host machine using some ssh client and use the vim via the tty created by ssh.
– Wakim