configs  Artifact [f706b23e61]

Artifact f706b23e612e2c46288c6229b7a55356d49322df542f09e13039d5bf418756c0:

  • File fish/functions/flgrep.fish — part of check-in [6be55bde09] at 2022-11-25 22:16:50 on branch trunk — Bring zsh and fish back in sync (user: js size: 213)

function flgrep
    set -l ret
    fossil changes --all . | awk '{ print $2 }' | while read file
        grep -H $argv "$file" && set ret 0
        test $status -gt 1 && return $status
    end
    return $ret
end