mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
ec14507723
This should probably be updated to use argparse at some point?
9 lines
270 B
Fish
9 lines
270 B
Fish
# Retrieves the first non-switch argument from the command line buffer
|
|
function __fish_first_token
|
|
set -l tokens (commandline -co)
|
|
set -e tokens[1]
|
|
set -l tokens (string replace -r --filter '^([^-].*)' '$1' -- $tokens)
|
|
if set -q tokens[1]
|
|
echo $tokens[1]
|
|
end
|
|
end
|