mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
znt: more optimizing workarounds for 5.0.6 <= zsh < 5.2
This commit is contained in:
parent
357d57c541
commit
d30a501b1c
2 changed files with 7 additions and 3 deletions
|
@ -105,7 +105,7 @@ colorize output of the tools, via their config files (check out e.g. n-cd.conf,
|
|||
it uses this).
|
||||
|
||||
## Performance
|
||||
ZNT are fastest with Zsh before 5.0.8 and starting from 5.2
|
||||
ZNT are fastest with Zsh before 5.0.6 and starting from 5.2
|
||||
|
||||
|
||||
vim:filetype=conf
|
||||
|
|
|
@ -243,7 +243,9 @@ while (( 1 )); do
|
|||
|
||||
# Take all elements, including duplicates and non-selectables
|
||||
typeset +U list
|
||||
list=( "$@" )
|
||||
repeat 1; do
|
||||
list=( "$@" )
|
||||
done
|
||||
|
||||
# Remove non-selectable elements
|
||||
[ "$#NLIST_NONSELECTABLE_ELEMENTS" -gt 0 ] && for i in "${(nO)NLIST_NONSELECTABLE_ELEMENTS[@]}"; do
|
||||
|
@ -309,7 +311,9 @@ while (( 1 )); do
|
|||
|
||||
# Take all elements, including duplicates and non-selectables
|
||||
typeset +U list
|
||||
list=( "$@" )
|
||||
repeat 1; do
|
||||
list=( "$@" )
|
||||
done
|
||||
|
||||
# Remove non-selectable elements only when in uniq mode
|
||||
[ "$NLIST_IS_UNIQ_MODE" -eq 1 ] && [ "$#NLIST_NONSELECTABLE_ELEMENTS" -gt 0 ] &&
|
||||
|
|
Loading…
Reference in a new issue