00f70e8558
Word-level diff of every manual entry against its generated counterpart surfaced 546 tokens present in the manual and absent from the header — losses reconcile.py missed, because it compared description length and these headers are longer overall thanks to ARGUMENTS/RETURNS. Merged the substantive ones (546 -> 202 residual tokens, the remainder being synonym drift). Notable real fixes: - git-clean: -f/--force was missing from ARGUMENTS entirely - pkg: per-package-manager query table - qc: cli-role rationale, role paths, --role passthrough - config-help: site URL, xdg-open, man page path, case-insensitivity - agents-init: idempotency, .gitignore paths, upstream pull, wrapper callers - smart_exit: exit-builtin wiring note, $SCROLLBACK_HISTORY_DIR The manual's claim that claude/agy pass `agents-init --agents` is stale; both pass `--quiet` (full setup). Header wins, manual dropped.
35 lines
793 B
Fish
35 lines
793 B
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# CATEGORY
|
|
# 05-package-management
|
|
#
|
|
# SYNOPSIS
|
|
# search [args...]
|
|
#
|
|
# DESCRIPTION
|
|
# Delegates to paru or yay for interactive AUR package search and
|
|
# installation. Falls back to yay if paru is not installed. Arch Linux only.
|
|
#
|
|
# ARGUMENTS
|
|
# args... Arguments forwarded to paru or yay
|
|
#
|
|
# RETURNS
|
|
# 0 AUR helper ran successfully
|
|
# 1 No AUR helper (paru or yay) found
|
|
#
|
|
# EXAMPLE
|
|
# search neovim
|
|
function search --description 'Search/install packages interactively via paru or yay'
|
|
set -l aur ""
|
|
if type -q paru
|
|
set aur paru
|
|
else if type -q yay
|
|
set aur yay
|
|
else
|
|
echo "No AUR helper found (install paru or yay)" >&2
|
|
return 1
|
|
end
|
|
$aur $argv
|
|
end
|