mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
49c5f96470
Bare set overwrites a global/universal variable if it exists.
16 lines
287 B
Fish
16 lines
287 B
Fish
|
|
function __fish_is_first_token -d 'Test if no non-switch argument has been specified yet'
|
|
set -l cmd (commandline -poc)
|
|
set -e cmd[1]
|
|
for i in $cmd
|
|
switch $i
|
|
case '-*'
|
|
|
|
case '*'
|
|
return 1
|
|
|
|
end
|
|
end
|
|
return 0
|
|
end
|
|
|