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

Part of #11833

(cherry picked from commit a53db72564)
2025-09-30 11:52:41 +02:00

22 lines
527 B
Fish

# localization: skip(private)
function __fish_complete_atool_archive_contents --description 'List archive contents'
set -l cmd (commandline -cxp)
set -e cmd[1]
set -l file
for arg in $cmd
switch $arg
case '-*'
case '*'
if test -f $arg
set file $arg
break
end
end
end
if not set -q file[1]
return
end
als $file -qq | sed -r 's/^\s*[0-9]+\s+[0-9-]+\s+[0-9:]+\s+(.*)$/\1/'
end