diff --git a/docs/fish-config.md b/docs/fish-config.md index d5794d8..8b806d8 100644 --- a/docs/fish-config.md +++ b/docs/fish-config.md @@ -1214,6 +1214,15 @@ Add -i (interactive confirmation) to destructive commands: fish-deps install fish-deps update +### fzf-update + + Synopsis: fzf-update + + Installs or upgrades fzf from git HEAD into ~/.fzf. Pulls the latest + changes if ~/.fzf already exists, or clones the repository if not. + + fzf-update + ## 5.7 System and Monitoring ### limine-edit @@ -1747,6 +1756,20 @@ Add -i (interactive confirmation) to destructive commands: claude-pr +### dops + + Synopsis: docker [subcommand] [args...] + + Wrapper for docker that intercepts the ps subcommand and redirects it to + the dops function for enhanced container listing. All other subcommands are + passed through to the real docker binary. + + Arguments: + subcommand Docker subcommand (ps is redirected to dops) + args... Arguments forwarded to docker or dops + + docker ps + ### qc Synopsis: qc [prompt...] diff --git a/functions/dops.fish b/functions/dops.fish index 5251d02..36703a4 100644 --- a/functions/dops.fish +++ b/functions/dops.fish @@ -1,6 +1,9 @@ # Copyright (C) 2026 Rootiest # SPDX-License-Identifier: AGPL-3.0-or-later +# CATEGORY +# 12-ai-and-developer-tools +# # SYNOPSIS # docker [subcommand] [args...] # diff --git a/functions/fzf-update.fish b/functions/fzf-update.fish index 2cc70ec..1a403ed 100644 --- a/functions/fzf-update.fish +++ b/functions/fzf-update.fish @@ -1,6 +1,9 @@ # Copyright (C) 2026 Rootiest # SPDX-License-Identifier: AGPL-3.0-or-later +# CATEGORY +# 06-dependency-management +# # SYNOPSIS # fzf-update #