Re: [Lazarus] git diff enhancement

2021-09-14 Thread Martin Frb via lazarus
On 14/09/2021 21:28, Marco van de Voort via lazarus wrote: Op 14-9-2021 om 17:55 schreef Martin Frb via lazarus: On 14/09/2021 17:49, Marco van de Voort via lazarus wrote: Op 14-9-2021 om 17:17 schreef Martin Frb via lazarus: In order for git to show pascal function headers. Add the

Re: [Lazarus] Fpdebug merge request 6

2021-09-14 Thread Martin Frb via lazarus
On 05/09/2021 21:08, Martin Frb wrote: On 05/09/2021 20:57, Christo Crause wrote: 1) adding to the IDE options. Looks that then every user using fpdebug, will see options for host/port? While really convenient for avr users, rather confusing for others? I am starting to agree

Re: [Lazarus] git diff enhancement

2021-09-14 Thread Marco van de Voort via lazarus
Op 14-9-2021 om 17:55 schreef Martin Frb via lazarus: On 14/09/2021 17:49, Marco van de Voort via lazarus wrote: Op 14-9-2021 om 17:17 schreef Martin Frb via lazarus: In order for git to show pascal function headers. Add the following to your config [diff "fpc"]   xfuncname = "^(((class[

Re: [Lazarus] Unable to show method

2021-09-14 Thread Marcos Douglas B. Santos via lazarus
On Tue, Sep 14, 2021 at 11:29 AM John Landmesser via lazarus wrote: > > Am 14.09.21 um 12:56 schrieb Marcos Douglas B. Santos via lazarus: > > Hello, > > > > I have an issue creating a new component, but it can be reproduce > > easily using a default component: > > - drop a TPopupMenu > > - on

Re: [Lazarus] git diff enhancement

2021-09-14 Thread Martin Frb via lazarus
On 14/09/2021 17:49, Marco van de Voort via lazarus wrote: Op 14-9-2021 om 17:17 schreef Martin Frb via lazarus: In order for git to show pascal function headers. Add the following to your config [diff "fpc"]   xfuncname = "^(((class[ \\t]+)?(procedure|function)|constructor|destructor|[

Re: [Lazarus] git diff enhancement

2021-09-14 Thread Marco van de Voort via lazarus
Op 14-9-2021 om 17:17 schreef Martin Frb via lazarus: In order for git to show pascal function headers. Add the following to your config [diff "fpc"]   xfuncname = "^(((class[ \\t]+)?(procedure|function)|constructor|destructor|[ \\t].*[ \\t]*=[ operator? --

[Lazarus] git diff enhancement

2021-09-14 Thread Martin Frb via lazarus
In order for git to show pascal function headers. Add the following to your config [diff "fpc"]   xfuncname = "^(((class[ \\t]+)?(procedure|function)|constructor|destructor|[ \\t].*[ \\t]*=[ \\t]*(class|interface|object|record)|initialization|finalization)[ \\t]*.*)$" then create a file   

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Martin Frb via lazarus
On 14/09/2021 16:11, Joost van der Sluis via lazarus wrote: 1) All watches should be part of the "watches" list. (or alternative means must be found). This is so the debugger can update them, if the user changes memory (set a new value to a variable). This is also helpful for the history

Re: [Lazarus] Unable to show method

2021-09-14 Thread John Landmesser via lazarus
Am 14.09.21 um 12:56 schrieb Marcos Douglas B. Santos via lazarus: Hello, I have an issue creating a new component, but it can be reproduce easily using a default component: - drop a TPopupMenu - on Object Inspector, go to Events tab - double-click in `Items.OnClick` to implement - you will get

Re: [Lazarus] Unable to show method

2021-09-14 Thread John Landmesser via lazarus
Am 14.09.21 um 12:56 schrieb Marcos Douglas B. Santos via lazarus: Hello, I have an issue creating a new component, but it can be reproduce easily using a default component: - drop a TPopupMenu - on Object Inspector, go to Events tab - double-click in `Items.OnClick` to implement - you will get

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Joost van der Sluis via lazarus
Op 14-09-2021 om 14:27 schreef Martin Frb via lazarus: I started about "sub watches" before reading your "every watch has a reference" On 14/09/2021 11:00, Joost van der Sluis via lazarus wrote: Op 14-09-2021 om 02:18 schreef Martin Frb via lazarus: 1) All watches should be part of

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Michael Van Canneyt via lazarus
On Tue, 14 Sep 2021, Joost van der Sluis via lazarus wrote: Op 14-09-2021 om 14:26 schreef Michael Van Canneyt via lazarus: On Tue, 14 Sep 2021, Joost van der Sluis via lazarus wrote: Hi all, I'm playing with several debuging-concepts. And I want to share this one with you. I've

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Martin Frb via lazarus
On 14/09/2021 15:32, Joost van der Sluis via lazarus wrote: Looking at the screencast, I think changing the current interface with the one presented in the screencast would be a definite improvement; regardless of the backend used... Yes, but that needs work on the backends. And I think we

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Joost van der Sluis via lazarus
Op 14-09-2021 om 14:26 schreef Michael Van Canneyt via lazarus: On Tue, 14 Sep 2021, Joost van der Sluis via lazarus wrote: Hi all, I'm playing with several debuging-concepts. And I want to share this one with you. I've created a new Lazarus-debugger LazDabDebugger that can work with

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Martin Frb via lazarus
I started about "sub watches" before reading your "every watch has a reference" On 14/09/2021 11:00, Joost van der Sluis via lazarus wrote: Op 14-09-2021 om 02:18 schreef Martin Frb via lazarus: But ideally this should just replace/extend the existing watches. Of course that also would

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Michael Van Canneyt via lazarus
On Tue, 14 Sep 2021, Joost van der Sluis via lazarus wrote: Hi all, I'm playing with several debuging-concepts. And I want to share this one with you. I've created a new Lazarus-debugger LazDabDebugger that can work with FpdServer. It depends on a package (LazDebugExtensionIntf) that

[Lazarus] Unable to show method

2021-09-14 Thread Marcos Douglas B. Santos via lazarus
Hello, I have an issue creating a new component, but it can be reproduce easily using a default component: - drop a TPopupMenu - on Object Inspector, go to Events tab - double-click in `Items.OnClick` to implement - you will get the message: "Unable to show method. Please fix the error shown in

Re: [Lazarus] Playing with debuggers

2021-09-14 Thread Joost van der Sluis via lazarus
Op 14-09-2021 om 02:18 schreef Martin Frb via lazarus: On 14/09/2021 01:00, Joost van der Sluis via lazarus wrote: I'm playing with several debuging-concepts. And I want to share this one with you. I've created a new Lazarus-debugger LazDabDebugger that can work with FpdServer. It depends on