tests/checks/tmux-complete4.fish: fix for macOS sed

This commit is contained in:
Johannes Altmanninger
2026-04-17 03:22:35 +08:00
parent 8d6426295e
commit 5eb7687a64

View File

@@ -15,7 +15,7 @@ isolated-tmux send-keys C-l ': -c'
function tab
isolated-tmux send-keys Tab
tmux-sleep
isolated-tmux capture-pane -p | sed '/./ { s,^,[,; s,$,], }'
isolated-tmux capture-pane -p | awk '/./ { print "[" $0 "]" }'
end
tab