configs  flgrep.fish at [3a29822385]

File fish/functions/flgrep.fish artifact 28dced9f2a part of check-in 3a29822385


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