2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-19 16:34:24 +00:00
fish-shell/share/functions/__fish_no_arguments.fish

16 lines
215 B
Fish
Raw Normal View History

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 '-*'
2010-09-18 02:18:26 +00:00
case '*'
return 1
end
end
return 0
end