Files
fish-shell/share/functions/__fish_protontricks_complete_appid.fish
Johannes Altmanninger a53db72564 Mark private functions that don't need localization
See the next commit.

Part of #11833
2025-09-30 11:47:26 +02:00

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