aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorZaq? Wiedmann2015-05-28 13:50:07 -0700
committerZaq? Wiedmann2015-05-28 15:35:26 -0700
commitaefaff602daead79cf3cc448503e2ad0b2995bee (patch)
tree6cd0717f0ecb343f7b88221249bcae321f40bb13 /README.md
parent815bdef7c0bb6eab62c48d34b85b4082f0566a5d (diff)
downloadvim-system-copy-aefaff602daead79cf3cc448503e2ad0b2995bee.tar.bz2
added support for linux and windows
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 12 insertions, 5 deletions
diff --git a/README.md b/README.md
index 4a8082a..e7f6b5e 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
System Copy
===========
-System copy provides vim mappings for copying text to the clipboard on OS X
-using `pbcopy`. Most people will be happy just setting their Vim clipboard to
-the system clipboard, but I find that doing so pollutes my clipboard history.
+System copy provides vim mappings for copying text to the os specific
+clipboard. Most people will be happy just setting their Vim clipboard to the
+system clipboard, but I find that doing so pollutes my clipboard history.
Instead, this plugin creates a unique mapping that explicitly pulls content
from Vim into the system clipboard.
@@ -21,6 +21,13 @@ object. For instance:
In addition, `cP` is mapped to copy the current line directly.
+Clipboard Utilities
+-------------------
+
+ - OSX - pbcopy
+ - Windows - clip
+ - Linux - xsel
+
Installation
------------
@@ -28,9 +35,9 @@ If you don't have a preferred installation method, I recommend using [Vundle][].
Assuming you have Vundle installed and configured, the following steps will
install the plugin:
-Add the following line to your `~/.vimrc` and then run `BundleInstall` from
+Add the following line to your `~/.vimrc` and then run `PluginInstall` from
within Vim:
``` vim
-Bundle 'christoomey/vim-system-copy'
+Plugin 'christoomey/vim-system-copy'
```