2018-05-06 23:46:56 +00:00
|
|
|
# determine if this is the very first argument (regardless if switch or not)
|
|
|
|
function __fish_is_first_arg
|
2024-01-22 06:42:45 +00:00
|
|
|
set -l tokens (commandline -pxc)
|
2019-05-05 10:09:25 +00:00
|
|
|
test (count $tokens) -eq 1
|
2018-05-06 23:46:56 +00:00
|
|
|
end
|