fish-shell/share/functions/__fish_is_first_token.fish
Aniruddh Agarwal 0445126c2e Undunder __fish_is_nth_token
We keep __fish_is_nth_token for compatibility and edit the
implementations of __fish_is_nth_token, __fish_is_first_token and
__fish_is_token_n to use fish_is_nth_token
2021-07-23 17:25:50 +02:00

5 lines
119 B
Fish

function __fish_is_first_token -d 'Test if no non-switch argument has been specified yet'
fish_is_nth_token 1
end