diff options
author | dawg <code@dawg.eu> | 2023-07-19 23:58:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 23:58:02 +0200 |
commit | a4cee84b4b94df7624f02a33c877e692371fe9a9 (patch) | |
tree | 833ba8d39d56edb24322b0036aa31d38211ac0d1 | |
parent | c697d066702ab81ce0684fedb4c638e0fc0473e8 (diff) |
fix fish completion for -i/--inode option
- looks like a copy&paste error of -g/--group
-rwxr-xr-x | completions/fish/exa.fish | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/fish/exa.fish b/completions/fish/exa.fish index daf6a4b..023bd05 100755 --- a/completions/fish/exa.fish +++ b/completions/fish/exa.fish @@ -61,7 +61,7 @@ complete -c exa -s 'B' -l 'bytes' -d "List file sizes in bytes, without any p complete -c exa -s 'g' -l 'group' -d "List each file's group" complete -c exa -s 'h' -l 'header' -d "Add a header row to each column" complete -c exa -s 'H' -l 'links' -d "List each file's number of hard links" -complete -c exa -s 'g' -l 'group' -d "List each file's inode number" +complete -c exa -s 'i' -l 'inode' -d "List each file's inode number" complete -c exa -s 'S' -l 'blocks' -d "List each file's number of filesystem blocks" complete -c exa -s 't' -l 'time' -d "Which timestamp field to list" -x -a " modified\t'Display modified time' |