Skip to content

Commit 5e57718

Browse files
mtnjustinmk
authored andcommitted
doc: err_write #390
1 parent f513983 commit 5e57718

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: pynvim/api/nvim.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,10 @@ def out_write(self, msg, **kwargs):
396396
return self.request('nvim_out_write', msg, **kwargs)
397397

398398
def err_write(self, msg, **kwargs):
399-
"""Print `msg` as an error message."""
399+
r"""Print `msg` as an error message.
400+
401+
The message is buffered (won't display) until linefeed ("\n").
402+
"""
400403
if self._thread_invalid():
401404
# special case: if a non-main thread writes to stderr
402405
# i.e. due to an uncaught exception, pass it through

0 commit comments

Comments
 (0)