diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-10-06 18:57:15 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-10-06 18:57:15 +0530 |
commit | bb0f1db9659b0a4a2a05667d37fd8a94fac7fea5 (patch) | |
tree | e05a0fb217b58942fc6e1def3ead99521c6f3b1f | |
parent | f2618a95fb0f883196b229c143e7a8f127a10934 (diff) | |
download | nnn-bb0f1db9659b0a4a2a05667d37fd8a94fac7fea5.tar.gz |
Update auto-complete scripts
-rw-r--r-- | misc/auto-completion/bash/nnn-completion.bash | 2 | ||||
-rw-r--r-- | misc/auto-completion/fish/nnn.fish | 2 | ||||
-rw-r--r-- | misc/auto-completion/zsh/_nnn | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/misc/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash index 2b81d31..e8bdbd0 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -13,7 +13,9 @@ _nnn () { opts=( -a -b + -c -d + -f -H -i -n diff --git a/misc/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish index 1a2eed4..336b7b7 100644 --- a/misc/auto-completion/fish/nnn.fish +++ b/misc/auto-completion/fish/nnn.fish @@ -7,7 +7,9 @@ complete -c nnn -s a -d 'use access time' complete -c nnn -s b -r -d 'bookmark key to open' +complete -c nnn -s c -d 'cli-only opener' complete -c nnn -s d -d 'start in detail mode' +complete -c nnn -s f -d 'run filter as cmd on prompt key' complete -c nnn -s H -d 'show hidden files' 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' diff --git a/misc/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn index feb3203..4e180c3 100644 --- a/misc/auto-completion/zsh/_nnn +++ b/misc/auto-completion/zsh/_nnn @@ -11,7 +11,9 @@ local -a args args=( '(-a)-a[use access time]' '(-b)-b[bookmark key to open]:key char' + '(-c)-d[cli-only opener]' '(-d)-d[start in detail mode]' + '(-f)-d[run filter as cmd on prompt key]' '(-H)-H[show hidden files]' '(-i)-i[start in navigate-as-you-type mode]' '(-n)-n[use version compare to sort files]' |