diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-17 00:07:38 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-17 00:07:38 +0530 |
commit | e9f7b6aa6c718bc2893ac15e49a70c3a0e2bd709 (patch) | |
tree | 14a8e31f2be00c75f4a6b01ee2b56bd9d566bf76 /misc | |
parent | ac815c692a6ff6923f3943345145a82cf1306e4b (diff) | |
download | nnn-e9f7b6aa6c718bc2893ac15e49a70c3a0e2bd709.tar.gz |
Option -t replaces NNN_NO_AUTOSELECT
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 35448ed..cb5f12e 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -21,6 +21,7 @@ _nnn () { -p -s -S + -t -v -w -h diff --git a/misc/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish index c7a7b8b..a53478f 100644 --- a/misc/auto-completion/fish/nnn.fish +++ b/misc/auto-completion/fish/nnn.fish @@ -15,6 +15,7 @@ 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 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' complete -c nnn -s v -d 'show program version and exit' complete -c nnn -s w -d 'wild load' complete -c nnn -s h -d 'show program help' diff --git a/misc/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn index 5438b6b..269bd8f 100644 --- a/misc/auto-completion/zsh/_nnn +++ b/misc/auto-completion/zsh/_nnn @@ -19,6 +19,7 @@ args=( '(-p)-p[copy selection to file]:file name' '(-s)-s[use substring match for filters]' '(-S)-S[start in disk usage analyzer mode]' + '(-t)-t[disable dir auto-select]' '(-v)-v[show program version and exit]' '(-w)-w[wild load]' '(-h)-h[show program help]' |