summaryrefslogtreecommitdiff
path: root/xmake/themes/plain/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-01-03 22:35:18 +0800
committerruki <[email protected]>2019-01-03 09:31:51 +0800
commit22a3a1c21f41205fa5ea71a4fd0a0d9caa2b8963 (patch)
treedd5690fcf3b4168f0ba36e0c00aa84b82d728c1f /xmake/themes/plain/xmake.lua
parentec40e9e8f26530aef3fc785a8c138b4710046475 (diff)
add build.progress_format style
Diffstat (limited to 'xmake/themes/plain/xmake.lua')
-rw-r--r--xmake/themes/plain/xmake.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/xmake/themes/plain/xmake.lua b/xmake/themes/plain/xmake.lua
index fa8353f95..7daf37ecc 100644
--- a/xmake/themes/plain/xmake.lua
+++ b/xmake/themes/plain/xmake.lua
@@ -25,21 +25,22 @@
-- define theme
theme("plain")
- -- set color of the error info
+ -- the error info
set_color("error", "")
set_color("error.verbose", "")
- -- set color of the warning info
+ -- the warning info
set_color("warning", "")
set_color("warning.verbose", "")
- -- the color of the building progress
+ -- the building progress
+ set_text("build.progress_format", "[%3d%%]")
set_color("build.progress", "")
- -- the color of the building object file
+ -- the building object file
set_color("build.object", "")
set_color("build.object.verbose", "")
- -- the color of the building target file
+ -- the building target file
set_color("build.target", "")
set_color("build.target.verbose", "")