diff options
author | 2018-12-04 09:28:04 +0530 | |
---|---|---|
committer | 2018-12-04 09:28:04 +0530 | |
commit | 21a491e6608f220531db2255e01680da9d9a0724 (patch) | |
tree | 45014043b1ac13032d62a96849545df8568b7b43 /scripts/auto-completion | |
parent | 971f0ddda1004acd9ecdfb1754f2fe724ed8d6b2 (diff) | |
download | nnn-21a491e6608f220531db2255e01680da9d9a0724.tar.gz |
Option -c is gone
Diffstat (limited to 'scripts/auto-completion')
-rw-r--r-- | scripts/auto-completion/bash/nnn-completion.bash | 3 | ||||
-rw-r--r-- | scripts/auto-completion/fish/nnn.fish | 2 | ||||
-rw-r--r-- | scripts/auto-completion/zsh/_nnn | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/scripts/auto-completion/bash/nnn-completion.bash b/scripts/auto-completion/bash/nnn-completion.bash index 6eaba96..b076de0 100644 --- a/scripts/auto-completion/bash/nnn-completion.bash +++ b/scripts/auto-completion/bash/nnn-completion.bash @@ -11,7 +11,7 @@ _nnn () { local cur=$2 prev=$3 local -a opts opts_with_args opts=( - -c + -C -e -h -i @@ -20,7 +20,6 @@ _nnn () { -v ) opts_with_arg=( - -c ) # Do not complete non option names diff --git a/scripts/auto-completion/fish/nnn.fish b/scripts/auto-completion/fish/nnn.fish index 47c9f8e..924b842 100644 --- a/scripts/auto-completion/fish/nnn.fish +++ b/scripts/auto-completion/fish/nnn.fish @@ -5,7 +5,7 @@ # Arun Prakash Jana <engineerarun@gmail.com> # -complete -c nnn -s c -r -d 'specify dir color, disables if N>7' +complete -c nnn -s C -d 'disable directory color' complete -c nnn -s e -d 'use exiftool instead of mediainfo' complete -c nnn -s h -d 'show this help and exit' complete -c nnn -s i -d 'start in navigate-as-you-type mode' diff --git a/scripts/auto-completion/zsh/_nnn b/scripts/auto-completion/zsh/_nnn index 746dc41..8fcf4fa 100644 --- a/scripts/auto-completion/zsh/_nnn +++ b/scripts/auto-completion/zsh/_nnn @@ -9,7 +9,7 @@ setopt localoptions noshwordsplit noksharrays local -a args args=( - '(-c)-c[specify dir color, disables if N>7]:color code' + '(-C)-C[disable directory color]' '(-e)-e[use exiftool instead of mediainfo]' '(-h)-h[show this help and exit]' '(-i)-i[start in navigate-as-you-type mode]' |