diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-23 20:18:17 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-23 20:28:56 +0530 |
commit | a4d8d68c7d50059610816972fcc859066279a628 (patch) | |
tree | c04b94eefa29dc38f9686764e36ed2fe1bd29905 /misc | |
parent | 979fadcc7ea1c7550b7111aa9c691807fc5dc800 (diff) | |
download | nnn-a4d8d68c7d50059610816972fcc859066279a628.tar.gz |
Option -r to show cp, mv progress on Linux
Diffstat (limited to 'misc')
-rw-r--r-- | misc/auto-completion/bash/nnn-completion.bash | 1 | ||||
-rw-r--r-- | misc/auto-completion/fish/nnn.fish | 1 | ||||
-rw-r--r-- | misc/auto-completion/zsh/_nnn | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/misc/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash index cf59084..698b588 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -19,6 +19,7 @@ _nnn () { -n -o -p + -r -s -S -t diff --git a/misc/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish index 5ec9cd5..4dd91d2 100644 --- a/misc/auto-completion/fish/nnn.fish +++ b/misc/auto-completion/fish/nnn.fish @@ -13,6 +13,7 @@ complete -c nnn -s i -d 'start in navigate-as-you-type mode' complete -c nnn -s n -d 'use version compare to sort files' complete -c nnn -s o -d 'open files only on Enter' complete -c nnn -s p -r -d 'copy selection to file' +complete -c nnn -s r -d 'show cp, mv progress (Linux-only)' complete -c nnn -s s -d 'use substring match for filters' complete -c nnn -s S -d 'start in disk usage analyzer mode' complete -c nnn -s t -d 'disable dir auto-select' diff --git a/misc/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn index 3bb3ff8..3fb1739 100644 --- a/misc/auto-completion/zsh/_nnn +++ b/misc/auto-completion/zsh/_nnn @@ -17,6 +17,7 @@ args=( '(-n)-n[use version compare to sort files]' '(-o)-o[open files only on Enter]' '(-p)-p[copy selection to file]:file name' + '(-r)-r[show cp, mv progress (Linux-only)]' '(-s)-s[use substring match for filters]' '(-S)-S[start in disk usage analyzer mode]' '(-t)-t[disable dir auto-select]' |