mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 13:40:45 +08:00
10 lines
207 B
Fish
10 lines
207 B
Fish
|
|
function __fish_test_arg --description "Test if the token under the cursor matches the specified wildcard"
|
|
switch (commandline -ct)
|
|
case $argv
|
|
return 0
|
|
end
|
|
return 1
|
|
end
|
|
|