summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarc Cornellà <marc@mcornella.com>2025-12-01 10:49:01 +0100
committerMarc Cornellà <marc@mcornella.com>2025-12-01 11:21:13 +0100
commitee30bc535a5a9ec1f062558af2ed8b83ad5af7a6 (patch)
tree37c4a42c41ce19bde7a2d9cfe5a75a4a68f77ec2 /plugins
parentca5c467db1d495a4b5c0049a4cf476ca7f34b790 (diff)
downloadzsh-ee30bc535a5a9ec1f062558af2ed8b83ad5af7a6.tar.gz
zsh-ee30bc535a5a9ec1f062558af2ed8b83ad5af7a6.tar.bz2
zsh-ee30bc535a5a9ec1f062558af2ed8b83ad5af7a6.zip
refactor(fig)!: remove archived `fig` plugin
BREAKING CHANGE: the fig plugin has been removed. `fig` was sunset on September 1, 2024. Having this plugin no longer makes sense. See https://fig.io/ for more information.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/fig/README.md9
-rw-r--r--plugins/fig/fig.plugin.zsh13
2 files changed, 0 insertions, 22 deletions
diff --git a/plugins/fig/README.md b/plugins/fig/README.md
deleted file mode 100644
index 3861958d6..000000000
--- a/plugins/fig/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Fig plugin
-
-This plugin sets up completion for [Fig](https://fig.io/).
-
-To use it, add `fig` to the plugins array in your zshrc file:
-
-```zsh
-plugins=(... fig)
-```
diff --git a/plugins/fig/fig.plugin.zsh b/plugins/fig/fig.plugin.zsh
deleted file mode 100644
index cddb6c7c0..000000000
--- a/plugins/fig/fig.plugin.zsh
+++ /dev/null
@@ -1,13 +0,0 @@
-if ! (( $+commands[fig] )); then
- return
-fi
-
-# If the completion file doesn't exist yet, we need to autoload it and
-# bind it to `fig`. Otherwise, compinit will have already done that
-if [[ ! -f "$ZSH_CACHE_DIR/completions/_fig" ]]; then
- autoload -Uz _fig
- typeset -g -A _comps
- _comps[fig]=_fig
-fi
-
-fig completion zsh >| "$ZSH_CACHE_DIR/completions/_fig" &|