https://github.com/kindlychung/sysclip
ssh clipboard syncing for Mac OSX
https://github.com/kindlychung/sysclip
Last synced: 2 months ago
JSON representation
ssh clipboard syncing for Mac OSX
- Host: GitHub
- URL: https://github.com/kindlychung/sysclip
- Owner: kindlychung
- Created: 2014-08-28T14:14:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-28T17:37:33.000Z (almost 11 years ago)
- Last Synced: 2025-02-10T21:46:52.910Z (4 months ago)
- Language: VimL
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Description
This is a vim plugin for syncing clipboard content when it's running in a ssh session.
# Requirements
* Only for Mac OS X. If you are using Linux, `ssh -X hostname` should work perfectly. If you are using windows, I have no idea what to do with it, therefore cannot help.
* Python3 should be installed# Install
* A plugin manager is recommended, e.g. Vundle. If you have vundle installed:
* Add one line in your .vimrc: `Plugin 'kindlychung/sysclip'`, and save
* Restart vim, then execute `:PluginInstall` command* You need to install a plist file for forwarding text to pbcopy, for this purpose do as instructed below:
* `cd ~/.vim/bundle/sysclip`
* `chmod u+x install.py`
* `./install.py`* Next configure ssh for port forwarding, add the following content in your `.ssh/config` (if non-existent, create it), replace `hostname` with the hostname of your ssh server :
Host hostname
RemoteForward 2224 localhost:2224# Change log
# Todo
* Nothing at the moment