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/bash | |
parent | 971f0ddda1004acd9ecdfb1754f2fe724ed8d6b2 (diff) | |
download | nnn-21a491e6608f220531db2255e01680da9d9a0724.tar.gz |
Option -c is gone
Diffstat (limited to 'scripts/auto-completion/bash')
-rw-r--r-- | scripts/auto-completion/bash/nnn-completion.bash | 3 |
1 files changed, 1 insertions, 2 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 |