diff hgext/color.py @ 28633:e35d7f131483

ui: add prompt argument to write (issue5154) (API) When code like filemerge._iprompt calls ui.prompt, it expects the user to see the output in addition to getting the prompt. Other code such as histedit may call ui.pushbuffer, but its goal is not to interfere with prompts, so this commit adds an optional prompt flag to ui.write and has _readline include that argument. ui.promptchoice calls ui.prompt which calls ui._readline. This commit also updates hgext.color.write.
author timeless <timeless@mozdev.org>
date Fri, 25 Mar 2016 21:51:00 +0000
parents af3bd9d1dbc1
children a5d449a7bc8f
line wrap: on
line diff
--- a/hgext/color.py	Sat Mar 26 10:53:31 2016 +0900
+++ b/hgext/color.py	Fri Mar 25 21:51:00 2016 +0000
@@ -424,7 +424,7 @@
             return super(colorui, self).write(*args, **opts)
 
         label = opts.get('label', '')
-        if self._buffers:
+        if self._buffers and not opts.get('prompt', False):
             if self._bufferapplylabels:
                 self._buffers[-1].extend(self.label(a, label) for a in args)
             else: