f97272d0ec
- Set $PAGER to ov in config.fish (falls back to less); remove LESS=-R - Rewrite less wrapper with full hierarchy: $PAGER → ov → less → more → cat - Simplify view.fish fallback to delegate to the less wrapper - Add logs function: fzf browser for scrollback and paru logs, opens in $PAGER - Add claude wrapper: auto-injects --remote-control unless already present - Add conf.d/paru-wrapper.fish: generates ~/.local/bin/paru on first run, versioned so future template changes auto-propagate on next shell start - Sync README.md and requirements.md to document all of the above
11 lines
324 B
Fish
11 lines
324 B
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
function claude --wraps='claude --remote-control' --description 'claude with --remote-control always enabled'
|
|
if contains -- --remote-control $argv
|
|
command claude $argv
|
|
else
|
|
command claude --remote-control $argv
|
|
end
|
|
end
|