diff options
author | Mélanie Chauvel <perso@hack-libre.org> | 2023-08-03 18:08:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 18:08:33 +0200 |
commit | 08cc56d7acdae29689ca75d9d41bef34905baa4c (patch) | |
tree | 599bdacd2a3be7e396fabf088fff429d8998ea4a | |
parent | 352d32b60c3571ccf000bf1569754a0e7de5f760 (diff) | |
parent | a4cee84b4b94df7624f02a33c877e692371fe9a9 (diff) |
Merge pull request #1219 from MartinNowak/patch-1
fix fish completion for -i/--inode option
-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' |