mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-03 11:51:15 -03:00
7 lines
200 B
Fish
7 lines
200 B
Fish
# localization: skip(private)
|
|
function __fish_protontricks_complete_appid
|
|
protontricks -l |
|
|
string match --regex '.*\(\d+\)' |
|
|
string replace --regex '(.*) \((\d+)\)' '$2\t$1'
|
|
end
|