config/fish/functions/_confirmation.fish

13 lines
294 B
Fish

function _confirmation --description "Ask for user confirmation"
while true
read --local --prompt-str='Are you sure you want to continue? [y/N] ' confirm
switch $confirm
case Y y
return 0
case '' N n
return 1
end
end
end