Index: example/format.dart |
diff --git a/example/format.dart b/example/format.dart |
index 4688bcffe77c484e29f849b590960bdcdd8d7fb5..b84924e66072091a511f41a043e4f1823ea8ca13 100644 |
--- a/example/format.dart |
+++ b/example/format.dart |
@@ -32,7 +32,8 @@ void runFormatter(String source, int pageWidth, {bool isCompilationUnit}) { |
} |
if (useAnsiColors) { |
- result = result.replaceAll(" ", "\u001b[1;30m·\u001b[0m"); |
+ result = result.replaceAll( |
+ " ", "${Color.gray}$unicodeMidDot${Color.none}"); |
pquitslund
2015/01/06 19:36:25
Nice.
|
} |
drawRuler("before", pageWidth); |