summaryrefslogtreecommitdiff
path: root/plugins/fig/fig.plugin.zsh
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/fig/fig.plugin.zsh
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/fig/fig.plugin.zsh')
-rw-r--r--plugins/fig/fig.plugin.zsh13
1 files changed, 0 insertions, 13 deletions
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" &|