llynx
Member
|
2 Code Editor Issues
1. One thing I ran into while migrating a project to the Code Editor was that you can't initialize array sizes with previously declared constant integers.
Code:
const int tickerSize = 50;
const int tickerLength = 10000;
Flt ticker[tickerSize]; // <-- Results in "cannot allocate an array of constant size 0" error
Flt tickerTracker[timeLength][tickerSize]; // "
Flt tickerMarketCapLimiter[tickerSize]; // "
Flt tickerMaxDelta[tickerSize]; // "
2. When you Highlight text and continue highlighting beyond the top or bottom of the current text in view, the page does not scroll. (Scrolling with acceleration would be very nice)
3. Multi-line parameter organization isn't currently allowed:
Code:
void compute_point(int *u, int n, int t, double v,
point *control, point *output);
4. No code folding :( [Not that urgent]
(This post was last modified: 05-13-2011 01:21 AM by llynx.)
|
|
05-13-2011 12:57 AM |
|
Esenthel
Administrator
|
RE: 2 Code Editor Issues
1. I'll fix that
2. what do you mean? (example please)
3. I'll check this
|
|
05-13-2011 07:39 AM |
|