summaryrefslogtreecommitdiff
path: root/plugins/fd/README.md
diff options
context:
space:
mode:
authorJonathan <jonathan.klimt@rwth-aachen.de>2018-09-27 18:26:48 +0200
committerMarc Cornellà <marc.cornella@live.com>2019-03-25 19:50:53 +0100
commit647537f15bb31f8a50699db239e9a98343d5d280 (patch)
treec55871140bed2bbeab2d9564ae64f6f1846c7220 /plugins/fd/README.md
parentf6a9a0a49855666f3311a2db040b9b27969da2bc (diff)
downloadzsh-647537f15bb31f8a50699db239e9a98343d5d280.tar.gz
zsh-647537f15bb31f8a50699db239e9a98343d5d280.tar.bz2
zsh-647537f15bb31f8a50699db239e9a98343d5d280.zip
Added a new plugin which adds completion for fd (fd-find)
Based on the existing "cargo" plugin.
Diffstat (limited to 'plugins/fd/README.md')
-rw-r--r--plugins/fd/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/fd/README.md b/plugins/fd/README.md
new file mode 100644
index 000000000..aabd624b8
--- /dev/null
+++ b/plugins/fd/README.md
@@ -0,0 +1,13 @@
+# fd
+
+This plugin adds completion for the file search tool [`fd`](https://github.com/sharkdp/fd), also known as `fd-find`.
+
+To use it, add `fd` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... fd)
+```
+
+Completion is taken from the fd release [`7.3.0`](https://github.com/sharkdp/fd/releases/tag/v7.3.0).
+
+Updated on Febrary 13th, 2019.