mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Add iconv completions
darcs-hash:20061226142933-ac50b-dd385732a0337f215855db4c517dc1bab52b2aca.gz
This commit is contained in:
parent
594f81ec8c
commit
2ec7428e32
1 changed files with 10 additions and 0 deletions
10
share/completions/iconv.fish
Normal file
10
share/completions/iconv.fish
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
|
||||
complete -c iconv -s f -l from-code -d (N_ "Convert from specified encoding") -x -a "(iconv --list|sed -e 's|//||')"
|
||||
complete -c iconv -s t -l to-code -d (N_ "Convert to specified encoding") -x -a "(iconv --list|sed -e 's|//||')"
|
||||
complete -c iconv -l list -d (N_ "List known coded character sets")
|
||||
complete -c iconv -s o -l output -d (N_ "Output file") -r
|
||||
complete -c iconv -l verbose -d (N_ "Print progress information")
|
||||
complete -c iconv -l help -d (N_ "Display version and exit")
|
||||
complete -c iconv -l version -d (N_ "Display help and exit")
|
||||
|
Loading…
Reference in a new issue