mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:12:50 +08:00
29f35d6cdf
This gives us more accurate completions because completion scripts get expanded paths
10 lines
291 B
Fish
10 lines
291 B
Fish
# Retrieves the first non-switch argument from the command line buffer
|
|
function __fish_first_token
|
|
set -l tokens (commandline -cx)
|
|
set -e tokens[1]
|
|
set -l tokens (string replace -r --filter '^([^-].*)' '$1' -- $tokens)
|
|
if set -q tokens[1]
|
|
echo $tokens[1]
|
|
end
|
|
end
|