PadreIDE / Padre

Offical repository of the core Padre code
http://padre.perlide.org/
Other
101 stars 43 forks source link

Win10 / Strawberry Perl / help system, debugging #43

Open Blobbel opened 3 years ago

Blobbel commented 3 years ago

It was a bit complicated to install on Windows 10 but this was a big help:

https://paulshipley.id.au/blog/coding-tips/ide-for-strawberry-perl-for-windows/

However, to start with, many things including the help system (using F2) does not seem to work, it lists a lot of help topcis but they all show "No Help found". Also.. the debugger only has a "quit" button. It seems to be working by entering eg. an 's' command in that "Raw command" box

Before considering Padre under Win10 as still very difficult, I have to ask, is there something fundamental am I missing?

Cheers,

szabgab commented 3 years ago

Padre has not seen any development for several years now, but some of the libraries underneath changes. So it is quite likely that many things will break. It needs some investment to make it work again. I just recently checked it on Linux, but I won't have much time to invest in it.

So no, probably you are not missing any fundamental, just need to adjust the expectations :-(

kudelart commented 3 years ago

Hello, it helped me this workaround - add this line in file C:\Strawberry\perl\site\bin\padre :

Padre->import(':everything');

before

my $ide = Padre->new( files => \@ARGV, session => $SESSION, actionqueue => $ACTIONS, startup_locale => $LOCALE, ) or die 'Failed to create Padre instance';

This import is used in condition:

Padre->import(':everything') if $PRELOAD;

Br Artur Kudelka

út 23. 2. 2021 v 9:49 odesílatel Blobbel notifications@github.com napsal:

It was a bit complicated to install on Windows 10 but this was a big help:

https://paulshipley.id.au/blog/coding-tips/ide-for-strawberry-perl-for-windows/

However, to start with, many things including the help system (using F2) does not seem to work, it lists a lot of help topcis but they all show "No Help found". Also.. the debugger only has a "quit" button. It seems to be working by entering eg. an 's' command in that "Raw command" box

Before considering Padre under Win10 as still very difficult, I have to ask, is there something fundamental am I missing?

Cheers,

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/PadreIDE/Padre/issues/43, or unsubscribe https://github.com/notifications/unsubscribe-auth/AABUBI4HJ5SRQFZJUA4BUITTANT3NANCNFSM4YCCFS3Q .