config-fish/functions/sponge_filter_matched.fish

12 lines
201 B
Fish
Raw Permalink Normal View History

2023-03-16 18:01:03 +00:00
function sponge_filter_matched \
--argument-names command
for pattern in $sponge_regex_patterns
if string match --regex --quiet $pattern -- $command
return
end
end
return 1
end