mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-02 02:41:15 -03:00
8 lines
143 B
Fish
8 lines
143 B
Fish
# localization: skip(private)
|
|
function __fish_with_status
|
|
set -l saved_status $status
|
|
$argv
|
|
or return
|
|
return $saved_status
|
|
end
|