mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
15 lines
215 B
Fish
15 lines
215 B
Fish
|
|
function __fish_no_arguments -d "Internal fish function"
|
|
set -l cmd (commandline -poc) (commandline -tc)
|
|
set -e cmd[1]
|
|
for i in $cmd
|
|
switch $i
|
|
case '-*'
|
|
|
|
case '*'
|
|
return 1
|
|
end
|
|
end
|
|
return 0
|
|
end
|
|
|