b998cc652e
Extract the tmux pipe-pane setup into functions/_tmux_pipe_log.fish, called by both conf.d/tmux-logging.fish (startup) and __fish_config_sync_logging (C5 re-enable). The helper prunes the oldest tmux_*.log files by mtime to stay within SCROLLBACK_HISTORY_MAX_FILES, matching the paru/yay wrappers. Uses 'command ls' to bypass the eza ls shadow, which injects OSC-8 hyperlink escapes into paths and corrupted the filenames passed to rm.
15 lines
525 B
Fish
15 lines
525 B
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
# C5 — Logging & Capture: starts a pipe-pane log for the current tmux pane
|
|
# when fish launches inside a tmux session. Each fish shell gets its own
|
|
# timestamped log file in SCROLLBACK_HISTORY_DIR (default: ~/.terminal_history).
|
|
# Naming: tmux_<session>-w<window>-p<pane>_YYYY-MM-DD_HH-MM-SS.log
|
|
|
|
__fish_config_op_enabled __fish_config_op_logging; or exit
|
|
status is-interactive; or exit
|
|
type -q tmux; or exit
|
|
set -q TMUX; or exit
|
|
|
|
_tmux_pipe_log
|