vim:read_and_write_remote_files
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
vim:read_and_write_remote_files [2020/04/14 00:41] – peter | vim:read_and_write_remote_files [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 37: | Line 37: | ||
<code bash> | <code bash> | ||
vim ftp:// | vim ftp:// | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Read and Write remote files within Vim session ===== | ||
+ | |||
+ | If you are already inside a Vim session, you can then read and write remote files using Nread (NetRead) and Nwrite (NetWrite) commands. | ||
+ | |||
+ | Open Vim editor in your local system using the following command: | ||
+ | |||
+ | <code bash> | ||
+ | vim | ||
+ | </ | ||
+ | |||
+ | You’re now inside the Vim session. | ||
+ | |||
+ | <code bash> | ||
+ | :e scp:// | ||
+ | </ | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | <code bash> | ||
+ | :Nread scp:// | ||
+ | </ | ||
+ | |||
+ | Or, | ||
+ | |||
+ | <code bash> | ||
+ | :Nread " | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | For more details, type the following command inside the Vim session: | ||
+ | |||
+ | <code bash> | ||
+ | :Nread ? | ||
+ | </ | ||
+ | |||
+ | After reading the file, type :q to exit. | ||
+ | |||
+ | Similarly, to write the remote file, run: | ||
+ | |||
+ | <code bash> | ||
+ | :e scp:// | ||
+ | </ | ||
+ | |||
+ | Press “i” to enter into insert mode and start writing /modifying it. | ||
+ | |||
+ | You can also use :w command to create and write files. But this command will create new empty file only. | ||
+ | |||
+ | <code bash> | ||
+ | :w scp:// | ||
+ | </ | ||
+ | |||
+ | After writing, press ESC and type :wq to save and exit. | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | <code bash> | ||
+ | :Nwrite scp:// | ||
+ | </ | ||
+ | |||
+ | To know more details about Nwrite, type the following in the Vim session: | ||
+ | |||
+ | <code bash> | ||
+ | :Nwrite ? | ||
</ | </ | ||
vim/read_and_write_remote_files.1586824885.txt.gz · Last modified: 2020/07/15 09:30 (external edit)