diff options
-rw-r--r-- | debian/zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/zshrc b/debian/zshrc index 716bce629..2e68181a1 100644 --- a/debian/zshrc +++ b/debian/zshrc @@ -68,10 +68,10 @@ then # active. Only then are the values from $terminfo valid. if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then function zle-line-init () { - echoti smkx + printf '%s' ${terminfo[smkx]} } function zle-line-finish () { - echoti rmkx + printf '%s' ${terminfo[rmkx]} } zle -N zle-line-init zle -N zle-line-finish |