Skip to content

Commit 38f14e8

Browse files
authoredSep 16, 2019
Merge pull request #18 from hesselbom/hozza-fancy-readme
fancy updated readme
2 parents 5e0fb38 + e2dcd18 commit 38f14e8

File tree

1 file changed

+43
-20
lines changed

1 file changed

+43
-20
lines changed
 

‎README.md

+43-20
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,64 @@
11
vim-hsftp
22
=========
33

4-
Vim: Upload and download files through sftp
4+
SFTP for Vim: Sync local and remote files/folders inside vim.
55

6-
Usage:
6+
Config
77
------
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.
99

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:
1111

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
1513
user username
16-
pass test123
14+
pass Sup3rS3cureP4s$W0rd
1715
port 22
1816
remote /var/www/
1917
confirm_download 0
2018
confirm_upload 0
2119

22-
### Commands
23-
:Hdownload
24-
Downloads current file from remote path
2520

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.
2822

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.
3124

25+
Usage
26+
------
27+
Run the command or use the mapping in vim on the current file/current buffer.
3228

33-
### Mappings
34-
<leader>hsd
35-
Calls :Hdownload
29+
**Upload File**
3630

31+
Upload the current file (current buffer) to the remote path.
32+
33+
:Hupload
3734
<leader>hsu
38-
Calls :Hupload
3935

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
4048
<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

Comments
 (0)
Please sign in to comment.