Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
220 views

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. ... } { ...
3
votes
1answer
413 views

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 ...
1
vote
1answer
35 views

How to colour methods and functions in Qt Creator's text editor?

Visual Assist has a feature for colouring methods and functions in VS's text editor. Is it possible and how do I apply colour to method and function names in Qt Creator's text editor? I have found ...
1
vote
1answer
57 views

Multiple Colours In TextBlock

Is it possible to add dynamic colors to a TextBlock ..i.e. have one character in one color and the next in another color. <TextBlock Text="{Binding no}" TextWrapping="Wrap" Margin="10,0,0,0" ...
1
vote
1answer
56 views

Defining new keywords with font-lock-add-keywords breaks/overrides variable-name coloring (emacs)

I was trying to get emacs to color some additional keywords in C. In particular, I to add RESTRICT. I did: (add-hook 'c-mode-common-hook (lambda () (font-lock-add-keywords nil ...
1
vote
1answer
299 views

How to set different keywords to different colors in Java Eclipse?

Basically what I want is in my vim I have keywords like public, class, and void one color and keywords like new, return and enum a different color. I've been looking through the eclipse keyword ...
1
vote
2answers
428 views

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

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) { ...
0
votes
1answer
24 views

Richtext editor coloring

I am building a cross browser rich text editor. In that i had a scenario like some text will be inserted with a color For Eg: Hi {$1} --> internally this {$1} will be <span ...
0
votes
1answer
337 views

problem to determine the chromatic polynomial of a graph

for a homework graph theory, I'm asked to determine the chromatic polynomial of the following graph For the Descomposition Theorem of Chromatic Polynomials. if G=(V,E), is a connected graph and e ...
0
votes
2answers
257 views

Syntax highlighting in UITextView?

We all know how Xcode changes the colors of certain parts of our code to tell us what kind of object it is right? (Ex. Blue for numbers, green for comments, etc.) I was wondering how this was ...
0
votes
0answers
80 views

Anyone write his own NetBeans Manifest File for Syntax Coloring?

I'm trying to setup my own coloring scheme in Netbeans to use with PHP files. I would like the coloring to recognize constants defined with define($string). (I'd like them to be red instead of ...
0
votes
1answer
105 views

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, ...
0
votes
1answer
29 views

code coloring and positioning in the postings

how can I coloring for example scheme code and indent the lines correctly in the question postings ?
0
votes
1answer
61 views

XCode+SVN coloring the modified lines?

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 ...
0
votes
1answer
182 views

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 ...