mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03:00
7 lines
208 B
Fish
7 lines
208 B
Fish
# localization: skip(private)
|
|
# determine if this is the very first argument (regardless if switch or not)
|
|
function __fish_is_first_arg
|
|
set -l tokens (commandline -pxc)
|
|
test (count $tokens) -eq 1
|
|
end
|