i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update fish_remove_path to use fish_remove_list

+2 -5
+2 -5
fish/.config/fish/functions/fish_remove_path.fish
··· 1 - function fish_remove_path 2 - if set -l index (contains -i "$argv" $fish_user_paths) 3 - set -e fish_user_paths[$index] 4 - echo "Removed $argv from the path" 5 - end 1 + function fish_remove_path --description 'Remove an item from $fish_user_paths' 2 + fish_remove_list fish_user_paths $argv 6 3 end