diff options
author | 2019-06-16 18:56:11 +0530 | |
---|---|---|
committer | 2019-06-17 07:04:25 +0530 | |
commit | 32b3445f3b96ae1c177a026e0fc9726ce17bbf81 (patch) | |
tree | a21609a5410673f3e0fbf9ad04787134eb3c25ea /scripts/auto-completion | |
parent | 815155033dc6ad54f6b2687b49d6d162458c5c30 (diff) | |
download | nnn-32b3445f3b96ae1c177a026e0fc9726ce17bbf81.tar.gz |
Use case insensitive version sort to compare
Diffstat (limited to 'scripts/auto-completion')
-rw-r--r-- | scripts/auto-completion/bash/nnn-completion.bash | 1 | ||||
-rw-r--r-- | scripts/auto-completion/fish/nnn.fish | 1 | ||||
-rw-r--r-- | scripts/auto-completion/zsh/_nnn | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/scripts/auto-completion/bash/nnn-completion.bash b/scripts/auto-completion/bash/nnn-completion.bash index 25bbed0..4c81e77 100644 --- a/scripts/auto-completion/bash/nnn-completion.bash +++ b/scripts/auto-completion/bash/nnn-completion.bash @@ -17,7 +17,6 @@ _nnn () { -h -i -l - -n -p -s -S diff --git a/scripts/auto-completion/fish/nnn.fish b/scripts/auto-completion/fish/nnn.fish index 02f8024..c0a6b1f 100644 --- a/scripts/auto-completion/fish/nnn.fish +++ b/scripts/auto-completion/fish/nnn.fish @@ -11,7 +11,6 @@ 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' complete -c nnn -s l -d 'start in light mode (fewer details)' -complete -c nnn -s n -d 'use version compare to sort files' 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' diff --git a/scripts/auto-completion/zsh/_nnn b/scripts/auto-completion/zsh/_nnn index 20a313f..17d1c1a 100644 --- a/scripts/auto-completion/zsh/_nnn +++ b/scripts/auto-completion/zsh/_nnn @@ -15,7 +15,6 @@ args=( '(-h)-h[show this help and exit]' '(-i)-i[start in navigate-as-you-type mode]' '(-l)-l[start in light mode (fewer details)]' - '(-n)-n[use version compare to sort files]' '(-p)-p[copy selection to file]:file name' '(-s)-s[use substring match for filters]' '(-S)-S[start in disk usage analyzer mode]' |