tide/functions/_tide_find_and_remove.fish

4 lines
144 B
Fish
Raw Normal View History

function _tide_find_and_remove -a name list --no-scope-shadowing
2021-04-10 18:46:10 +03:00
set -l index (contains --index $name $$list) && set -e "$list"[$index]
end