Skip to content

comoretti/vim-sftp-sync

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

vim-sftp-sync

Automatic sync SFTP for buffers in vim

Installation

Install using vundle,pathogen or your favorite Vim package manager.

Usage

<leader>su
Upload the file

<leader>sd
Download the file

Description

Please write config following like.

let g:vim_sftp_configs = {
\      'sample_server_1' : {
\    	'upload_on_save'   : 1,
\    	'download_on_open' : 0,
\    	'confirm_downloads': 1,
\    	'confirm_uploads'  : 0,
\		'local_base_path'  : '/Users/name/sample/',
\		'remote_base_path' : '/var/www/sample/',
\		'user' : 'username',
\		'pass' : 'password',
\		'host' : 'ip addess or domain name',
\		'port' : '22'
\	},
\	'sample_server_2' : {
\       'upload_on_save'   : 1,
\    	'download_on_open' : 1,
\    	'confirm_downloads': 0,
\    	'confirm_uploads'  : 0,
\		'local_base_path'  : '/Users/development',
\		'remote_base_path' : '/var/www/development/trunk/',
\		'user' : 'username',
\		'pass' : 'password',
\		'host' : 'ip addess or domain name',
\		'port' : '22'
\	}
\}

sample1

Edit file : /Users/name/sample/file.php
Sync to : /var/www/sample/file.php

sample2

Edit file : /Users/name/sample/lib/dao/file.php
Sync to : /var/www/sample/lib/dao/file.php

Alias

If you want to another command, write following like.

Ctrl+u
nnoremap <C-U> <ESC>:call SftpUpload()<CR>

Ctrl+d
nnoremap <C-U> <ESC>:call SftpDownload()<CR>

About

Automatic asynchronous SFTP for buffers in vim

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published