diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-08-04 20:36:19 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-08-04 20:36:19 +0530 |
commit | 42fd2a4d13c370e54ebe812560fc7e82c17ccc97 (patch) | |
tree | 0233dc8273638859e274359b465d60071ffa75da /misc | |
parent | ae961da157597e2fc8df27bf38728c0630fe567e (diff) | |
download | nnn-42fd2a4d13c370e54ebe812560fc7e82c17ccc97.tar.gz |
Program option to use older
Diffstat (limited to 'misc')
-rw-r--r-- | misc/auto-completion/bash/nnn-completion.bash | 1 | ||||
-rw-r--r-- | misc/auto-completion/fish/nnn.fish | 3 | ||||
-rw-r--r-- | misc/auto-completion/zsh/_nnn | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/misc/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash index 63ad1d7..dfadb53 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -39,6 +39,7 @@ _nnn () -T -u -V + -w -x -h ) diff --git a/misc/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish index 655d56c..77e6bad 100644 --- a/misc/auto-completion/fish/nnn.fish +++ b/misc/auto-completion/fish/nnn.fish @@ -15,7 +15,7 @@ complete -c nnn -s a -d 'auto-create NNN_FIFO' complete -c nnn -s A -d 'disable dir auto-select' complete -c nnn -s b -r -d 'bookmark key to open' -x -a '(echo $NNN_BMS | awk -F: -v RS=\; \'{print $1"\t"$2}\')' complete -c nnn -s c -d 'cli-only opener' -complete -c nnn -s C -d 'hardware cursor mode' +complete -c nnn -s C -d 'color by context' complete -c nnn -s d -d 'start in detail mode' complete -c nnn -s e -d 'open text files in $VISUAL/$EDITOR/vi' complete -c nnn -s E -d 'use EDITOR for undetached edits' @@ -38,5 +38,6 @@ complete -c nnn -s t -r -d 'timeout in seconds to lock' complete -c nnn -s T -r -d 'a d e r s t v' complete -c nnn -s u -d 'use selection (no prompt)' complete -c nnn -s V -d 'show program version and exit' +complete -c nnn -s w -d 'hardware cursor mode' complete -c nnn -s x -d 'notis, sel to system clipboard' complete -c nnn -s h -d 'show program help' diff --git a/misc/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn index 1bc328a..2d973a1 100644 --- a/misc/auto-completion/zsh/_nnn +++ b/misc/auto-completion/zsh/_nnn @@ -13,7 +13,7 @@ args=( '(-A)-A[disable dir auto-select]' '(-b)-b[bookmark key to open]:key char' '(-c)-c[cli-only opener]' - '(-C)-C[hardware cursor mode]' + '(-C)-C[color by context]' '(-d)-d[start in detail mode]' '(-e)-e[open text files in $VISUAL/$EDITOR/vi]' '(-E)-E[use EDITOR for undetached edits]' @@ -36,6 +36,7 @@ args=( '(-T)-T[a d e r s t v]:key' '(-u)-u[use selection (no prompt)]' '(-V)-V[show program version and exit]' + '(-w)-C[hardware cursor mode]' '(-x)-x[notis, sel to system clipboard]' '(-h)-h[show program help]' '*:filename:_files' |