fix: remove leading asterick in Fish completion (#1543)

This commit is contained in:
Edwin Kofler 2023-04-16 19:15:46 -07:00 committed by GitHub
parent 2dd65e0e71
commit 198ced5032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ function __fish_asdf_arg_at -a number
end
function __fish_asdf_list_versions -a plugin
asdf list $plugin 2>/dev/null | sed -e 's/^[[:space:]]*//'
asdf list $plugin 2>/dev/null | string trim | string trim --left --chars '*'
end
function __fish_asdf_list_all -a plugin