On Dec 28, 2006, at 2:43 PM, Gerd Knops wrote:
On Dec 27, 2006, at 7:31 PM, Chris Thomas wrote:
On Nov 29, 2006, at 12:30 PM, Gerd Knops wrote:
Using the Xcode bundle build&Run command, if the applications output is wider than the "Build With Xcode" window, horizontal scrolling will display black text on dark blue background (default theme) in the scrolled portions. Not the most readable...
Fixed. :) Sorry about the wait.
Good, but now it is eating spaces again... Kind of kills ascii tables.
Interesting, it works here. Could you try replacing the div.console and div.console_error entries in the CSS block in Xcode.tmbundle/ Support/bin/format_build.rb with the following?
div.console { font-family: "Monaco", "Bitstream Vera Sans Mono", monospace; white-space: pre; white-space: pre-wrap; word-wrap: break-word; color: black; }
div.console_error { font-family: "Monaco", "Bitstream Vera Sans Mono", monospace; white-space: pre; white-space: pre-wrap; word-wrap: break-word; color: red; }
Thanks, Chris