configs  Artifact [f3b40d9221]

Artifact f3b40d9221f42d288ef2464774d9604bc7e6e135a1b118cd47c411ad63fa8288:

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

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