configs  Artifact [6aa6b9caa3]

Artifact 6aa6b9caa36ba31f28e644e3c1ca493e9a65a9f0c5d949d3a399a0484eb9a8c1:

  • File config/fish/functions/grep.fish — part of check-in [bed5a23ae3] at 2020-02-19 21:46:19 on branch trunk — Consistent indenting for .fish files (user: js size: 137)
  • File fish/functions/grep.fish — part of check-in [24d2eb82f0] at 2020-02-20 22:07:34 on branch trunk — Remove useless config subdirectory (user: js size: 137)

function grep
    if type -q ggrep
        command ggrep --color=auto $argv
    else
        command grep --color=auto $argv
    end
end