We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 172ec30 commit c74c1a7Copy full SHA for c74c1a7
plugin/dokuvimki.vim
@@ -347,7 +347,7 @@ class DokuVimKi:
347
if text and not self.ismodified(wp):
348
print >>sys.stdout, "No unsaved changes in current buffer."
349
elif not text and not wp in self.pages:
350
- print >>sys.stdout, "Can't save new empty page %s" % wp
+ print >>sys.stdout, "Can't save new empty page %s." % wp
351
else:
352
if not sum and text:
353
sum = self.default_sum
@@ -728,7 +728,7 @@ class DokuVimKi:
728
if len(unsaved) == 0:
729
vim.command('silent! quitall')
730
731
- print >>sys.stdout, "Some buffers contain unsaved changes. Use DWquit! if you really want to quit."
+ print >>sys.stderr, "Some buffers contain unsaved changes. Use DWquit! if you really want to quit."
732
733
734
def help(self):
0 commit comments