mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-04-26 00:03:29 +02:00
Add READMEs to plugins copydir and copyfile (#6802)
* Add README to copydir plugin * Add README to copyfile plugin
This commit is contained in:
@@ -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.
|
||||||
@@ -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 <filename>` to copy the file named `filename`.
|
||||||
Reference in New Issue
Block a user