daf81bf0a4
Both carry complete headers and are user-facing, but had no # CATEGORY so generated no entry. Surfaced by the new verify-manual.py warning, which is exactly what it is there for. The 8 that still warn are correct exclusions: fast is a self-described placeholder, the rest are bundled plugin and prompt internals.
27 lines
723 B
Fish
27 lines
723 B
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# CATEGORY
|
|
# 06-dependency-management
|
|
#
|
|
# SYNOPSIS
|
|
# fzf-update
|
|
#
|
|
# DESCRIPTION
|
|
# Installs or upgrades fzf from git HEAD into ~/.fzf. Pulls the latest
|
|
# changes if ~/.fzf already exists, or clones the repository if not.
|
|
#
|
|
# EXAMPLE
|
|
# fzf-update
|
|
function fzf-update --description 'Install or upgrade fzf from git HEAD'
|
|
if test -d ~/.fzf
|
|
echo "Updating fzf..."
|
|
git -C ~/.fzf pull --ff-only
|
|
else
|
|
echo "Installing fzf..."
|
|
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
|
|
end
|
|
and ~/.fzf/install --bin
|
|
and echo "fzf $(fzf --version) ready. Restart your shell to activate."
|
|
end
|