Skip to content

Commit

Permalink
decode (ble/builtin/bind): skip checking stdin in parsing the keyseq
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Jan 24, 2020
1 parent d912e69 commit 057183c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ function ble-decode-char {
while
if ((iloop++%50==0)); then
((iloop>50)) && ble-decode/.hook/show-progress
if ble-decode/has-input-for-char && [[ ! $ble_decode_char_sync ]]; then
if [[ ! $ble_decode_char_sync ]] && ble-decode/has-input-for-char; then
ble/array#push _ble_decode_char_buffer "$@"
return 148
fi
Expand Down

0 comments on commit 057183c

Please sign in to comment.