zsh: commit-to-history: keep escaped character
authorDoan Tran Cong Danh <congdanhqx@gmail.com>
Thu, 14 Nov 2019 16:05:16 +0000 (23:05 +0700)
committerDoan Tran Cong Danh <congdanhqx@gmail.com>
Thu, 14 Nov 2019 16:08:40 +0000 (23:08 +0700)
Prior to this change, when committing this line to history

    echo "hello\"world"

zsh will record this line in history instead:

    echo "hello"world"

because the \" is processed by print.

Correct it by print in raw mode.

Signed-off-by: Doan Tran Cong Danh <congdanhqx@gmail.com>

No differences found