Fixed a bug in displaying error messages.

This commit is contained in:
Holger Rapp 2013-10-15 11:02:12 +02:00
parent 7a6abe02ec
commit b8e0a6167d

View File

@ -119,7 +119,7 @@ def new_scratch_buffer(text):
command("set ft=text")
command("set buftype=nofile")
vim.buffers[-1][:] = text.splitlines()
vim.current.buffer[:] = text.splitlines()
feedkeys(r"\<Esc>")