From 00f311a3c1c0beff04db8a005fcfbfc251d62276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Mon, 7 May 2018 18:00:27 +0200 Subject: [PATCH] Add READMEs to plugins copydir and copyfile (#6802) * Add README to copydir plugin * Add README to copyfile plugin --- plugins/copydir/README.md | 10 ++++++++++ plugins/copyfile/README.md | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 plugins/copydir/README.md create mode 100644 plugins/copyfile/README.md diff --git a/plugins/copydir/README.md b/plugins/copydir/README.md new file mode 100644 index 00000000..594bf106 --- /dev/null +++ b/plugins/copydir/README.md @@ -0,0 +1,10 @@ +# copydir plugin + +Copies the path of your current folder to the system clipboard. + +To use, add `copydir` to your plugins array: +``` +plugins=(... copydir) +``` + +Then use the command `copydir` to copy the $PWD. diff --git a/plugins/copyfile/README.md b/plugins/copyfile/README.md new file mode 100644 index 00000000..53138ad0 --- /dev/null +++ b/plugins/copyfile/README.md @@ -0,0 +1,10 @@ +# copyfile plugin + +Puts the contents of a file in your system clipboard so you can paste it anywhere. + +To use, add `copyfile` to your plugins array: +``` +plugins=(... copyfile) +``` + +Then you can run the command `copyfile ` to copy the file named `filename`.