On Thu, Apr 10, 2008 at 7:19 PM, Vincent Legoll <vincent legoll gmail com> wrote: > But maybe this is not working for you (as currently for me), despite > having gtksourceview installed... > > I'll investigate and try to reproduce the problem on another computer > before speculating more... After a quick try, I can say this is working properly here on ubuntu small python & c code is highlighted correctly try the attached files with the option cited earlier activated, and verify you have the gtksourceview package installed -- Vincent Legoll
a.py 0000644 0001750 0001750 00000000071 10777446235 010657 0 ustar vince vince main():
print "titi"
[a for a in [1, 2, 3] if a > 1]
b.c 0000644 0001750 0001750 00000000042 10777446062 010446 0 ustar vince vince int main()
{
printf("titi");
}
b.py 0000644 0001750 0001750 00000000100 10777446275 010655 0 ustar vince vince main():
print "titi"
[a for a in [0, 1, 2, 3, 4] if a <= 1]
int main()
{
printf("titi");
}
main(): print "titi" [a for a in [1, 2, 3] if a > 1]
main(): print "titi" [a for a in [0, 1, 2, 3, 4] if a <= 1]