1
我想創建一個cd函數,它擴展了當前cd函數(在我的機器上)的生命期爲/usr/local/Cellar/fish/2.6.0/share/fish/functions/cd.fish
。這可能嗎?是否有可能用魚的同名名稱來包裝現有的函數?
因此,像這樣:
function cd
if i_can_handle_it
do_my_thing_with $argv
else
call /usr/local/Cellar/fish/2.6.0/share/fish/functions/cd.fish $argv
end
end
嗯。這令人失望。應該有辦法鏈接它們。 – dar512