John Kouraklis 94 Posted June 23, 2020 Yesterday, I got a new one: "The LSP is not running...Attempting to launch it again" or something like this. LSP never came back. I had to restart the IDE Share this post Link to post
vfbb 285 Posted June 23, 2020 (edited) One more issue: memory leak using inline variables (just arc types, like strings, arrays and interfaces) + anonymous method. Ex: procedure TForm1.FormCreate(Sender: TObject); begin var S: string := 'Test leak'; TThread.Queue(nil, procedure() begin Showmessage(S); end); end; The report: Edited June 23, 2020 by vfbb Share this post Link to post
santiago 36 Posted June 26, 2020 Ctrl + Left Mouse Click Navigation breaks with read-only files Share this post Link to post
Stefan Glienke 2002 Posted June 27, 2020 On 6/23/2020 at 9:53 PM, vfbb said: One more issue: memory leak using inline variables (just arc types, like strings, arrays and interfaces) + anonymous method. FWIW - reported as https://quality.embarcadero.com/browse/RSP-29564 1 1 Share this post Link to post
Fintan 0 Posted July 10, 2020 10.4 does not appear to be recognising the Browsing Path. For instance, in 10.4 I have to add units within $(BDS)\SOURCE\RTL\SYS to the uses clause, whereas in previous versions (coming from 10.2) that was not required. Is this a known issue? Share this post Link to post
vfbb 285 Posted July 10, 2020 2 hours ago, Fintan said: 10.4 does not appear to be recognising the Browsing Path. For instance, in 10.4 I have to add units within $(BDS)\SOURCE\RTL\SYS to the uses clause, whereas in previous versions (coming from 10.2) that was not required. Is this a known issue? The browsing path works fine. It just not work when the Code Insight is completing in background, then the Ctrl + Click may not work. But while this, you can simple click in the unit name in uses, and press Ctrl + Enter. Share this post Link to post