Love the recent improvements to the Xcode bundle, thanks!
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...
Thanks
Gerd
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.
Chris
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.
Another thing that would be nice to have: My project creates a stack trace when it crashes. It would be great if I could include links similar to the build portion.
Gerd
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
On Dec 28, 2006, at 8:58 PM, Chris Thomas wrote:
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; }
That does seem to do the trick. Everything lines up neatly now...
Thanks
Gerd