File fish/functions/flgrep.fish artifact 28dced9f2a part of check-in 3b9986b114
function flgrep set -l ret fossil changes --all . | sed 's/^.* //' | while read file grep -H $argv "$file" && set ret 0 test $status -gt 1 && return $status end return $ret end