configs  flgrep.fish at [c51ad6649c]

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


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