mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-29 08:41:15 -03:00
15 lines
299 B
Fish
15 lines
299 B
Fish
# localization: skip(private)
|
|
function __fish_no_arguments -d "Internal fish function"
|
|
set -l cmd (commandline -pxc) (commandline -tc)
|
|
set -e cmd[1]
|
|
for i in $cmd
|
|
switch $i
|
|
case '-*'
|
|
|
|
case '*'
|
|
return 1
|
|
end
|
|
end
|
|
return 0
|
|
end
|