About Store Forum Documentation Contact



Post Reply 
2 Code Editor Issues
Author Message
llynx Offline
Member

Post: #1
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
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
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
Find all posts by this user Quote this message in a reply
llynx Offline
Member

Post: #3
RE: 2 Code Editor Issues
(05-13-2011 07:39 AM)Esenthel Wrote:  2. what do you mean? (example please)

   

In this screenshot the mouse is below the window but the code does not scroll down and continue highlighting code.
05-13-2011 08:06 AM
Find all posts by this user Quote this message in a reply
Post Reply