i want to jump to a *static* function but the PopUp Menu doesn´t offer an item like "Goto definition: __IamStatic". To reproduce this behaviour right click on "__IamStatic" inside the Test() function.
Another problem is the behaviour of the alt+right and alt+left keys. Just click on "Test" inside the start(). Now press alt+right. The cursor jumps correctly to the beginning of "FUNCTION Test", but when i unpress the alt key a char is inserted before "F". The same happens when i press now alt+left. The cursor jumps back to the start() "Test" but when i unpress the alt key a char is inserted.
Code: Select all
FUNCTION Start( ) AS VOID
? Test()
RETURN
FUNCTION Test() AS INT
RETURN __IamStatic()
STATIC FUNCTION __IamStatic() AS INT
RETURN 1
Karl-Heinz