Closed Jagua closed 5 years ago
When writing in Go, type the following code,
"AA\nBB".log
and hits <C-y><C-b>, then got the following result.
<C-y><C-b>
log.Println("AA BB")
but want this.
log.Println("AA\nBB")
This PR fixes this.
Thank you
When writing in Go, type the following code,
and hits
<C-y><C-b>
, then got the following result.but want this.
This PR fixes this.