Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use Geany to edit JavaScript files. I have made it highlight "self" as a keyword symply by adding it to filetypes.javascript file. But i need to make it highlighth "self" word in another color. How can i do this?

share|improve this question

3 Answers

up vote 5 down vote accepted

In Linux, copy the file /usr/share/geany/filetypes.javascript to ~/.config/geany/filedefs/filetypes.javascript and edit this copy.

In the section [keywords] add:

secondary=self

Change the colour in section [styling] by editing word2, e.g.:

word2=0x00cccc;0xffffff;true;false

This will make it cyan and bold.

share|improve this answer

You will have to edit your filetypes.javascript file (in folder $/.config/.geany, if you're under linux). But I am not 100% sure you can.

share|improve this answer

I want to make int and char be a different color so i added them to the secondary = int char line of filetypes.c, but it doesn't work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.