fish-shell/share/functions/__fish_print_encodings.fish
2020-01-21 16:55:37 +01:00

9 lines
383 B
Fish

function __fish_print_encodings -d "Complete using available character encodings"
if iconv --usage &>/dev/null # only GNU has this flag
# Note: GNU iconv changes its output to contain the forward slashes below when stdout is not a tty.
iconv --list | string replace -ra '//' ''
else # non-GNU
iconv --list | string replace -ra '\s+' '\n'
end
end