Fix a typo in _ksi_debug_print

This commit is contained in:
Roman Perepelitsa
2022-01-05 09:22:00 +01:00
parent a6b74f190f
commit 4decac26f6

View File

@@ -35,7 +35,7 @@ builtin typeset -gi _ksi_state
# Asks kitty to print $@ to its stdout. This is for debugging.
_ksi_debug_print() {
builtin local data
data=$(command base64 <<<"${(j: :}@}") || builtin return
data=$(command base64 <<<"${(j: :)@}") || builtin return
builtin printf '\eP@kitty-print|%s\e\\' "${data//$'\n'}"
}