feat(logging): add C5 — Logging & Capture opinionated guard #39

Merged
rootiest merged 10 commits from feat/logging-toggle-c5 into main 2026-06-11 02:05:07 +00:00
Showing only changes of commit 7fcf268fc7 - Show all commits
+10 -3
View File
@@ -48,8 +48,16 @@ function smart_exit --description 'Capture colorized scrollback before exiting,
return 0
end
# C5 — Logging & Capture: skip all capture when logging is disabled
if __fish_config_op_enabled __fish_config_op_logging
# C5 — Logging & Capture: skip all capture when logging is disabled.
# When disabled, tell Kitty the window is handled so its watcher doesn't
# capture either — belt-and-suspenders alongside the sentinel file.
if not __fish_config_op_enabled __fish_config_op_logging
if test -n "$KITTY_WINDOW_ID"
kitty @ set-user-vars "logged_by_shell=true" 2>/dev/null
end
builtin exit
end
set -l snapshot_dir (set -q SCROLLBACK_HISTORY_DIR; and echo $SCROLLBACK_HISTORY_DIR; or echo "$HOME/.terminal_history")
set -l max_files (set -q SCROLLBACK_HISTORY_MAX_FILES; and echo $SCROLLBACK_HISTORY_MAX_FILES; or echo 100)
@@ -94,7 +102,6 @@ function smart_exit --description 'Capture colorized scrollback before exiting,
echo -e "$c_warn""➔""$c_reset Exiting discreetly; $c_bold""no history logs saved.""$c_reset"
sleep 0.4
end
end
# Call the true system exit directly
builtin exit