mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-08-16 01:38:11 +02:00
znt: optimize heap usage for older Zsh's (e.g. 5.0.8)
This commit is contained in:
@ -224,7 +224,11 @@ zcurses timeout main -1
|
||||
key=""
|
||||
keypad=""
|
||||
|
||||
list=( "$@" )
|
||||
# This loop makes script faster on some Zsh's (e.g. 5.0.8)
|
||||
repeat 1; do
|
||||
list=( "$@" )
|
||||
done
|
||||
|
||||
last_element="$#list"
|
||||
|
||||
while (( 1 )); do
|
||||
|
Reference in New Issue
Block a user