get_window_size: Set read timeout as 1

This commit is contained in:
Muhammad Herdiansyah 2018-08-24 12:08:29 +07:00
parent 926fc4edde
commit b32f4e4d1a
1 changed files with 2 additions and 1 deletions

View File

@ -3563,7 +3563,8 @@ get_window_size() {
# The escape codes above print the desired output as
# user input so we have to use read to store the out
# -put as a variable.
IFS=';t' read -d t -t 0.05 -sra term_size
# The 1 second timeout is required for older bash
IFS=';t' read -d t -t 1 -sra term_size
unset IFS
# Split the string into height/width.