Quote:
Originally Posted by Depresie
Auto completion for custom includes ? when ?
|
It's always been there.
Quote:
Originally Posted by wopox3
Will the constant value be displayed in the following updates? type m_pActiveItem = 373 in the tooltip

|
Yeah I was thinking about it, but it's really difficult to properly do it for multiple definitions one a single line without a real lexer, like:
PHP Code:
new const first = 69, second = 1337;
because it wouldn't be enough to just split them at ',' as there are cases where that would produce false results. Doing it for single definition on a line wouldn't be a problem.