On 17-11-2004 12:34, Ivar Ă…sell wrote:
patterns = ( /* comments */ { name = "Comment"; begin = "/\*"; end = "\*/"; foregroundColor = "#FF00FF"; backgroundColor = "#FFFFDC"; },
begin="/\*" - What does the first forwardslash do?? The first backslash only escapes the following one?
This matches "/*". For some reason everything in plist files has to be escaped twice, so that's why you need two 's before the *.
Jeroen.