3 * Extended bottom panel that shows running servers, server status, etc;
4 (maybe even some libgtop widgets)
5 * A "real" SuperCollider library binding so that "recompile class library"
6 feature becomes possible;
7 * Gedit autostart in SuperCollider mode (requested by Eduardo Melendez);
8 * GtkSourceCompletion support.
10 Planned syntax highlighting extensions:
12 * Methods (have to be different from instance variables).
13 * Unary/binary ops (see below) incl. "and:" etc.
14 * ~global and a-z variables.
17 Old buggy contexts to fix:
19 <context id="operators" style-ref="operator">
20 <match extended="true">
25 <<\* | <<<|
34 [-+*/%&|@<>?!=]
38 <context id="keyword-args" style-ref="global-variable">
39 <match>(?<=[(,])\s*\w+(?=:)</match>
42 <context id="global-variables" style-ref="global-variable">
43 <match>~[a-z]\w*</match>