mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
bffeb664cc
Missed in b85a8bb
because of `git commit -a`.
Fixes #2372
5 lines
122 B
Fish
5 lines
122 B
Fish
|
|
function __fish_sgrep -d "Call grep without honoring GREP_OPTIONS settings"
|
|
set -l GREP_OPTIONS
|
|
command grep $argv
|
|
end
|