|
1 | 1 | vim-hsftp
|
2 | 2 | =========
|
3 | 3 |
|
4 |
| -Vim: Upload and download files through sftp |
| 4 | +SFTP for Vim: Sync local and remote files/folders inside vim. |
5 | 5 |
|
6 |
| -Usage: |
| 6 | +Config |
7 | 7 | ------
|
8 |
| -First you have to create a config file called .hsftp in your project directory. |
| 8 | +Create a config file called `.hsftp` in the root of your projects directory. |
9 | 9 |
|
10 |
| -When uploading/downloading hsftp searches backwards for a config file so if the edited file is e.g. `/test/dir/file.txt` and the config file is `/test/.hsftp` it will upload/download as `dir/file.txt` |
| 10 | +Example `.hsftp` config file - the amount of spaces do not matter: |
11 | 11 |
|
12 |
| -The config file should be structured like this (amount of spaces doesn't matter): |
13 |
| - |
14 |
| - host 1.1.1.1 |
| 12 | + host example.org |
15 | 13 | user username
|
16 |
| - pass test123 |
| 14 | + pass Sup3rS3cureP4s$W0rd |
17 | 15 | port 22
|
18 | 16 | remote /var/www/
|
19 | 17 | confirm_download 0
|
20 | 18 | confirm_upload 0
|
21 | 19 |
|
22 |
| -### Commands |
23 |
| - :Hdownload |
24 |
| -Downloads current file from remote path |
25 | 20 |
|
26 |
| - :Hupload |
27 |
| -Uploads current file to remote path |
| 21 | +vim-hsftp searches up the current files (current buffers) directory path for a `.hsftp` config file, and assumes it is located at the projects root directory. This resembles how the SFTP plugin for Sublime Text 3 works. |
28 | 22 |
|
29 |
| - :Hupdir |
30 |
| -Uploads current folder of current buffer to remote path |
| 23 | +e.g. if the local file in vim is located at `/example/dir/file.txt`, and the example config file shown above is located at `/example/.hsftp` - when you run `:Hupload`, vim-hsftp will upload the local file to the host `example.org` at the remote path `/var/www/dir/file.txt` via SFTP using the provided credentials. |
31 | 24 |
|
| 25 | +Usage |
| 26 | +------ |
| 27 | +Run the command or use the mapping in vim on the current file/current buffer. |
32 | 28 |
|
33 |
| -### Mappings |
34 |
| - <leader>hsd |
35 |
| -Calls :Hdownload |
| 29 | +**Upload File** |
36 | 30 |
|
| 31 | +Upload the current file (current buffer) to the remote path. |
| 32 | + |
| 33 | + :Hupload |
37 | 34 | <leader>hsu
|
38 |
| -Calls :Hupload |
39 | 35 |
|
| 36 | +**Download File** |
| 37 | + |
| 38 | +Download the current file (current buffer) from the remote path. |
| 39 | + |
| 40 | + :Hdownload |
| 41 | + <leader>hsd |
| 42 | + |
| 43 | +**Upload Folder** |
| 44 | + |
| 45 | +Upload all files in the current folder (current buffer) to the remote path. |
| 46 | + |
| 47 | + :Hupdir |
40 | 48 | <leader>hsf
|
41 |
| -Calls :Hupdir |
| 49 | + |
| 50 | + |
| 51 | +Thanks |
| 52 | +------ |
| 53 | +A huge thanks to our contributors; [@v9n](https://github.com/v9n) for the upload folder feature, [@bridgesense](https://github.com/bridgesense) for vim compatibility and fixes! |
| 54 | + |
| 55 | +Maintainers: [@hesselbom](https://github.com/hesselbom), [@hozza](https://github.com/hozza) |
| 56 | + |
| 57 | + |
| 58 | +TODO |
| 59 | +------ |
| 60 | + |
| 61 | +- attempt no password login (SSH key) [PR#8](https://github.com/hesselbom/vim-hsftp/pull/8) |
| 62 | +- download directories [PR#5](https://github.com/hesselbom/vim-hsftp/pull/5) |
| 63 | +- auto upload on save [PR#15](https://github.com/hesselbom/vim-hsftp/pull/15) |
| 64 | +- background ops (run in background) [I#2](https://github.com/hesselbom/vim-hsftp/issues/2) |
0 commit comments