mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
76d9051605
darcs-hash:20070130004233-ac50b-5c48b940b29ac4f3c377bc88e2abf2e490e9df48.gz
9 lines
207 B
Fish
9 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
|
|
|