text-coloring

Can I merge Syntax coloring and Folding? OR Projection colored from master document info

Example. I have an XML document: <document> <region type="type1">text of region1 </region> some simple text <region type="type2">text of region2 </region> And I want it to be presented as text of region1 some simple text text of region2 The basic Eclipse coloring works independent from folding, as I know. But I need text to be c...

XCode+SVN coloring the modified lines?

Hi all! I am probably asking for too much: does anyone know a way to get XCode color the lines of code according to their subversion status (modified, added, etc.)? It would be nice to have it integrated in XCode. ...

code coloring and positioning in the postings

how can I coloring for example scheme code and indent the lines correctly in the question postings ? ...

Coloring NSTableView Text per row

I have a NSTableView that is displaying an array of objects I have. For each of these objects (rows) I would like to change the color of the text displayed depending on the results of a function I run on each object; So for example all the object in the table that exist in another list (or some other requirement) I want to display them ...

Syntax Coloring without Presentation Reconciler

I would like to do coloring in Eclipse without using the presentation reconciler. Therefore, first, I need to figure out how to associate a TextPresentation object with either my editor or document, but I am having difficulty finding out how to link it either of those. Normally, the CreatePresentation in the IPResentationReconciler int...

Coloring/indenting a script within script in Emacs

I often have shell scripts that call other scripting languages, like so: #!/bin/bash cat somefile|awk ' BEGIN { #This line is not auto-indented and is colored as a string constant. ... } { #Same with this line. ... }' echo "More Bash code here." ... Is there a way to make Emacs recognize the awk string as an awk program in...

Faster Way to Color All Occurences in a RichTextBox in C#

Hi, I have a RichTextBox, and there are about more than 1000 occurrences of a specified search string. I use the following function to color all the occurrences: public void ColorAll(string s) { rtbxContent.BeginUpdate(); int start = 0, current = 0; RichTextBoxFinds options = RichTextBoxFinds.MatchCase; start = rtbxCo...